*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;  
}

body{
    width: 100%;
    height: 100vh;
    margin: 0;
    padding:0;
    display: flex;               
    justify-content: center;      
    align-items: center;          
    background: #000;
    box-sizing: border-box;
}

.mainimg{
    width: 100%;
    height: 100vh;
    position: absolute;
}

.container{
    height: auto;
    position: relative;   
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.container .From{
    width: 360px;
    height: 400px;
    padding: 20px;

    display: flex;                
    flex-direction: column;       
    justify-content: center;      
    align-items: center;         
    text-align: center;            

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.container .FromR{
    width: 360px;
    height: 450px;
    padding: 20px;

    display: flex;                
    flex-direction: column;       
    justify-content: center;      
    align-items: center;         
    text-align: center;            

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

h4{
    margin-bottom: 30px;
    font-size: 30px;
}

input{
    width: 80%;
    margin: 5px 0;
    padding: 10px;
    background: rgba(179, 179, 179, 0.612);
    border: 1px solid blanchedalmond;
    border-radius: 6px;
    color: white;
    outline: none;
}

.FromBtn{
    width: 180px;
    margin-top: 15px;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
}

a{
    text-decoration: none;
    color: #000;
}
