body{
    background-color: black;
    display: flex; 
    justify-content: center; /* Centers horizontally */
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container{
    width: 400px;
    color: white;
}
.rejister-page{
    background-color: antiquewhite;
    text-align: center;
    background-color: black;
    border: 1px white solid;
    padding: 20px;
    height: 350px;
}
.rejister-page h1{
    font-family: Lucida Handwriting;
    background: linear-gradient(135deg, #FF3366, #FF6B3D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
}
.input-box input{
    background-color: rgb(14, 14, 14);
    border-radius: 4px;
    outline: none;
    border: 1px rgb(105, 105, 105) solid;
    padding: 10px;
    width: 300px;
    margin-bottom: 10px;
    color: white;
}
#submit{
    margin: 25px 0 15px 0;
}

#submit a{
    padding: 10px 130px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #fc1b53, #fa5523);
    transition: box-shadow 0.8s ease;
   
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}


#submit a:hover{
    cursor: pointer;
    box-shadow: 0px 0px 8px #fa5523;
}
.forgot-box{
   padding: 8px;
}
.forgot-box a{
    text-decoration: none;
    color:#6c6b6b;
    transition: color 0.4s ease-in-out;

}
.forgot-box a:hover{
    color: white; 
}
.signup-box{
    background-color: black;
    border: 1px white solid;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
}
.signup-box a{
   color: rgb(97, 95, 95);
    text-decoration: none;
    margin-left: 5px;
    font-weight: 800;
    transition: color  0.5s ease;
}
.signup-box p a:hover{
    color: rgba(255, 68, 0, 0.518);
}