body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background: radial-gradient(circle at 24.1% 68.8%, rgb(21, 18, 38) 0%, rgb(0, 0, 0) 99.4%); */
    background: radial-gradient(circle at 24.1% 68.8%, rgb(0, 3, 12) 0%, rgb(1, 0, 21) 99.4%);
     /* linear-gradient(102deg, rgb(0 39 0), rgba(0, 255, 0, 0) 80.71%),
     linear-gradient(348deg, rgb(0 0 95), rgba(0, 0, 255, 0) 140.71%); */ 
}
input {    
    background-color:#e0dfe4e0;
    color: #020013;
}

* {
    color: #ebebec;
}

.login-container {
    text-align: center;
    /* background: linear-gradient(179deg, #001318d3, #010920d3, #01000fe0); */
    padding: 30px;
    margin: 8px;
    border-radius: 15px;
    /* box-shadow: 0 10px 15px rgba(57, 56, 56, 0.3); */
}

.register-container {
    text-align: center;
    /* background: linear-gradient(179deg, #001318d3, #010920d3, #01000fe0); */
    padding: 40px;
    margin: 8px;
    border-radius: 15px;
    /* box-shadow: 0 10px 15px rgba(57, 56, 56, 0.3); */
    max-width: 400px;
    width: 100%;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(178deg, #13234e, #19264d);
    border: none;
    border-radius: 5px;
    color: #fcfafa;
    font-size: 16px;
    margin-top: 10px;
}

.extra-options {
    margin-top: 10px;
}

.extra-options a {
    color: #d3b3c4;
    text-decoration: none;
    margin: 0 10px;
}

.alert-danger {
    background: linear-gradient(178deg, #e42503f6, #83033d);
}

.p-3 {
    padding: 2px;
}

.rounded {
    border-radius: 5px;
}

.d-flex {
    display: flex;
}

.m-auto {
    margin: auto;
}

.text-success {
    color: green;
}

.text-danger {
    color: rgb(221, 33, 12);
}
