* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 60%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.35);
    object-fit: cover;

    object-position: 65% center; 
    
    z-index: -1;
    background-color: #e8e2d6;
}


.form-card {
    width: 420px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);

    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.form-card h2 {
    color: #0D8277;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

#submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #0D8277;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 5px;
    transition: 0.2s;
}

#submit-btn:hover {
    background: #09635A;
}


.login-text {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.login-text a {
    color: #0D8277;
    font-weight: 600;
}

#error-msg {
    color: #B80000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
