body{
   background-color: black;
   display: flex; 
   justify-content: center; /* Centers horizontally */
   align-items: center;
   height: 100vh;
   margin: 0;
}
.container{
    width: 400px;
}
.rejister-page{
    background-color: antiquewhite;
    text-align: center;
    background-color: black;
    border: 1px white solid;
    padding: 20px;
    height: 450px;
}
.rejister-page h1{
    font-family: Lucida Handwriting;
    background: linear-gradient(135deg, #FF3366, #FF6B3D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
p{
    color: rgb(145, 142, 142);
}

.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;
}
.text-box span{
    color: rgba(255, 255, 255, 0.837);
}
#submit{
    margin-top: 25px;
}
#submit a{
    padding: 10px 130px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #fc1b53, #fa5523);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

#submit a:hover{
    cursor: pointer;
    box-shadow: 0px 0px 8px #fa5523;

}

.login-box{
    background-color: black;
    border: 1px white solid;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
}
.login-box p{
    color: white;
}
.login-box a{
    color: rgb(97, 95, 95);
    text-decoration: none;
    margin-left: 5px;
    font-weight: 800;
    transition: color  0.5s ease;
}
.login-box p a:hover{
    color: rgba(255, 68, 0, 0.518);
}