body {
    margin: 0;
    /* height: 100vh; */
    font-family: 'Poppins', sans-serif;
    /* background: linear-gradient(135deg, #7472c3, #76a7fc); */
    background: url('../img/car.jpg') ;
    /* overflow: hidden; */
}

.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass Card */
.login-card {
    width: 420px;
    padding: 70px 40px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
    position: relative;
    text-align: center;
}

/* Floating Logo */
.logo-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-badge img {
    width: 55px;
}

/* Titles */
.admin-title {
    font-weight: 700;
    margin-top: 10px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Inputs */
.form-group {
    text-align: left;
    margin-bottom: 18px;
}

.form-control {
    height: 46px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #6698ed;
    box-shadow: 0 0 0 3px rgba(37,117,252,0.2);
}

/* Button */
.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #5d98fc, #6a11cb);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login span {
    margin-left: 6px;
    transition: 0.3s;
}

.btn-login:hover span {
    margin-left: 12px;
}
