

body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#0f0f0f;
    color:rgba(255, 255, 255, 0.795);
}


.form-section{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}



.form-card{
    background:#1c1c1c;
    padding:40px;
    width:500px;
    border-radius:50px;
    box-shadow:0 0 100000000px #644c05;
}

.form-card h1{
    text-align:center;
    margin-bottom:25px;
    color: #c39d2e;
}


.form-card h2{
    text-align:center;
    margin-bottom:25px;
    
}


.form-group{
    margin-bottom:20px;
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:6px;
    font-size:14px;
    
}

.form-group input{
    padding:10px;
    border:2px solid grey;
    border-radius:20px;

}


.valid{
outline:2px solid rgb(8, 214, 8);
}

.invalid{
outline:2px solid red;
}



    small {
        color: red;
        background-color:none;
        margin:4px;
        padding: 8px;
        border: 1px dashed;
        border-radius: 6px;
        display: none;
    }


.btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    font-size:20px;
    cursor:pointer;
}

.btn-primary{
    background:#d4af37;
    color:black;
    font-weight:bold;
}

.btn-primary:hover{
    background: rgb(11, 172, 11);
    
    
}
.register-text{
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

.register-text a{
    color:#d4af37;
    text-decoration:none;
    font-weight:bold;
}

.register-text a:hover{
    text-decoration:underline;
}
