@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



body {
   background-image: linear-gradient(to right top, #1a1a1a, #1b1920, #1c1825, #1f1629, #23132d, #221430, #201432, #1d1535, #131936, #081c35, #011e33, #001f2f);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.wrapper{
    height:100%;
}


.navbar-login-register {
    position: relative;
    width: 100%;
    height: 100px;
}

.register, .login {
    float: right;
    display: inline-block;
    text-align: center;
    width: 120px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #00E0FF;
    margin: 24px 40px;
    line-height: 40px;
    text-decoration: none;
    color: #00E0FF;
    font-weight: bold;
    transition: all 0.3s ease;
}

.register:hover, .login:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
    background-color: #00E0FF22; 
    box-shadow: 0 0 15px rgba(255, 0, 119, 0.6); 
    color: #FFFFFF;
    cursor: pointer;
}

.register span, .login span {
    color: #00E0FF;
    font-size: 14px;
    font-weight: bold;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
    height: auto;
    margin-bottom: 50px;
}

.logo-container img {
    width: 354px;
}

.logo-container span {
    color: #FF2F92;;
     text-shadow: 0 0 5px #FF4EC7;
    text-align: center;
    line-height: 0.5%;
    opacity: 80%;
    font-size: 60px;
    font-family: 'Audiowide', sans-serif;
    animation: none;
}


.logo-container span:hover {
     animation: glitch-soft 2s infinite;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.1);
    max-width: 300px;
    margin: auto;
}

.form-container form input {
    width: 300px;
    height: 50px;
    background: #151515;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #2C2C2C;
    margin: 8px;
    color: #e0e0e0;
    font-size: 16px;
    
}
.form-container form input::placeholder {
    color: #888888;
}

.form-container form input:focus {
    border: 1px solid #FF2F92; 
}

.form-container form label {
    display: block;
    color: #FF4EC7; /* Hot pink accent for visibility */
    font-size: 14px;
    font-weight: 600;
    margin: 12px 0 4px 0;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
}

.form-container form button {
    background: linear-gradient(145deg, #FF0066, #FF4EC7);
    margin: 8px;
    width: 304px;
    height: 52px;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    border: transparent;
    transition: transform 0.2s ease;
}

.form-container form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 0, 119, 0.8);
}

.form-container p {
    color: #999;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
}

.terms {
    display: flex;
    align-items: center;
    
}

.terms label {
    color: white;  
}

.terms label a {
    color: inherit;
}


#terms {
    width: 20px;
}

@keyframes glitch-soft {
    0%, 100% { transform: none; }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateY(-3px); }
}

