body{
    font-family:'Arial',sans-serif;
    color: #fff;
}

#background-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.form-section {
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100vh; 
    padding: 20px;
}
.form-container {
    background-color: rgba(0, 0, 0, 0.75); 
    padding: 30px; 
    border-radius: 10px; 
    max-width: 400px; 
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.form-title {
    font-size: 28px; 
    color: #ffcc00; 
    margin-bottom: 20px;
}
.input-group {
    margin-bottom: 15px; 
    margin-right: 20px;
}

.input-group input {
    width: 100%; 
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 16px;
}
.input-group input:focus {
     border-color: #ffcc00;
     outline: none;
}

.btn{
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #ffb700;
}   
.form-footer{
    margin-top: 20px; 
    font-size: 14px; 
    color: #fff;
}
.form-footer a {
    color: #ffcc00; 
    text-decoration: none;
}

.form-footer a:hover{
    text-decoration: underline;
}

.form-footer p a {
    color: #ffcc00;
    text-decoration: none; 
    font-size: 14px; 
    margin-top: 10px; 
    display: inline-block;
}
.form-footer p a:hover{
    text-decoration: underline;
}

.error-box{
    background-color: #f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
    padding:10px;
    margin-bottom: 20px;
    border-radius: 5px;
}
