*,*::before,* ::after  {

    box-sizing: border-box;
}

body{
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
    min-height: 100dvh;
    margin: 0;
    padding:0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background-color: #191919; 
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.title{

    color: #58585a;
    text-align: center;
    margin-bottom: 2em;
    
 
}

.loginBlock{

    background-color: #202020;
    padding: 2em 3em;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 8px;
}

.form-inputs::placeholder {

    color:#adadadd3;
    font-size:1rem; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.form-inputs{
    outline: none;
    padding: 1.15em;
    font-size: 0.725rem;
    letter-spacing: 1px;
    border: none;
    border-bottom: 1.5px solid #58585a59;
    
    
    border-radius: 1px;
    color: #adadadd3;
    margin-bottom: .95rem;
    width: 95%;
    background-color: #1c1d2700;

    
}



.passwordFormInputs{

    margin-bottom: .75em;
    
}

.passwordContainer{
    

    width: 100%;

    margin-bottom: .85em;
}

.passwordInfoContainer{
    display: flex;
    justify-content: space-between;


}

.passwordtoggle{
    
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
    padding: .55em;
    border-radius: 8px;
    border:0;
    cursor: pointer;
    background-color: #202020;
    color: #58585a;
    

}

.action-button{
    display: inline-block;
    font-size: 0.725rem;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
    padding: 1em 1.5em;
    border-radius: 50px 0;

    border:0;
    cursor: pointer;
    width: 100%;
    margin-bottom: .95em;
}

.action-button--normal {
    background-color:#fa5f22f1;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), /* Shadow for 3D effect */
                0 6px 20px rgba(0, 0, 0, 0.19); /* Additional shadow for depth */
    
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
            
}


