body {
    width: 100%;
    height: 100vh;
}
.registration {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    background-image: url("./bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;

}
.wrapper {
    border: 0.5px solid #ffffff;
    border-radius: 5px;
    padding: 30px 0;
}
.container {
    text-align: center;
    width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.title {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}
.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.input {
    width: 60%;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 30px;
}
.btn {
    padding: 15px;
    text-transform: uppercase;
    background-color: #4bee0b;
    border-radius: 5px;
    margin-bottom: 20px;
    

}
.btn:hover {
    font-weight: bold;
}
.success {
    color: chartreuse;
    font-size: 20px;
}
.error {
    color: red;
    font-size: 20px;
}