/* Page background */
.auth-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(
            rgba(1, 1, 247, 0.7),
            rgba(1, 1, 247, 0.7)
        ),
        url("/images/Drone_pic_kathrine.JPG");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


body {
    overflow: hidden;
}



/* Card */
.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

/* Logo */
.auth-logo {
    width: 120px;
    margin-bottom: 20px;
}

/* Titles */
.auth-title {
    font-weight: 700;
    color: #0101F7;
    margin-bottom: 5px;
}

.auth-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Inputs */
.auth-input {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: #0101F7;
    box-shadow: 0 0 0 0.15rem rgba(42, 82, 152, 0.25);
}

/* Button */
.auth-btn {
    background: linear-gradient(135deg, #0101F7);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
    color: #fff;
}

/* Footer */
.auth-footer {
    margin-top: 25px;
    font-size: 14px;
    color: #555;
}

.auth-footer a {
    color: #0101F7;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
