﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    height: 100%;
    overflow-y: auto;
}

    /* Hide Scrollbar - Chrome, Safari */
    body::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

/* Hide Scrollbar - Firefox */
body {
    scrollbar-width: none;
}

/* Hide Scrollbar - IE */
body {
    -ms-overflow-style: none;
}


/* Center Page */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Box */
.login-container {
    position: relative;
    width: 380px;
    border-radius: 20px;
    overflow: hidden;
   background: url('https://i.pinimg.com/736x/47/f2/ce/47f2ce5752b097d708cf5a19fcb309ac.jpg') no-repeat center center;
    background-size: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Black Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* Content */
.login-content {
    position: relative;
    padding: 40px 35px;
    color: #fff;
    z-index: 2;
}

/* Logo */
.logo img {
    height: 80px;
}

/* Title */
.title {
    margin-bottom: 25px;
    font-weight: 600;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 12px;
        border: none;
        outline: none;
        background: #dcdcdc;
        box-shadow: inset 4px 4px 8px rgba(0,0,0,0.35), inset -4px -4px 8px rgba(255,255,255,0.9);
        font-size: 14px;
    }

        .form-group input:focus {
            box-shadow: inset 2px 2px 6px rgba(0,0,0,0.4), inset -2px -2px 6px rgba(255,255,255,1), 0 0 6px rgba(255,0,150,0.5);
        }



/* Button */
.login-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, #7b2ff7, #f107a3);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .login-btn:hover {
        transform: scale(1.05);
    }

/* Forgot */
.forgot {
    margin-top: 15px;
}

    .forgot a {
        color: #ddd;
        font-size: 14px;
        text-decoration: none;
    }

        .forgot a:hover {
            color: #fff;
        }

.brand-logo {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
