
body {
    background: radial-gradient(circle, #2731be 0%, #000000 100%);
}

body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.splash-screen {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.splash-screen img {
    width: 500px;
    height: auto;
}

.splash-screen.fade-in {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.splash-screen.fade-out {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.loginform {
    width: 100%;
    text-align: center;
}

.login-container, .recover-password, .new-password, .verification-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 320px;
    background-color: rgba(42, 52, 71, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: #fff;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.login-container.show, .recover-password.show, .new-password.show, .verification-form.show {
    opacity: 1;
    transform: translateY(0);
}

.login-container img, .recover-password img, .new-password img, .verification-form img {
    width: 150px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.8));
}

h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

h5 {
    color: #a9a9a9e6;
    margin: 5px 0;
}

.input-group {
    width: 90%;
    margin: 10px 0;
    font-size: 12px;
}

.input-group input {
    color: red;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: rgba(42, 52, 71, 0.523);
    color: #fff;
    transition: border 0.3s, background 0.3s;
    font-weight: bold;
}

input[type="text"]:focus, input[type="password"]:focus {
    outline: none;
    background-color: rgba(246, 246, 246, 0.62);
    color:#171f2c;
    font-weight: bold;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.button {
    padding: 10px 20px;
    background-color: #ffffff1a;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 50%;
    margin: 10px auto;
}

.button:hover {
    background-color: #2A3447;
    transform: scale(1.05);
}

.forgot-password, .new-account {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.forgot-password a, .new-account a {
    color: #242424;
    text-decoration: none;
}

.forgot-password a:hover, .new-account a:hover {
    text-decoration: underline;
    background-color: #242424;
}

.login-container {
    opacity: 0;
}
