@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;700&display=swap');
        
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #121212;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
    font-family: "Unbounded", sans-serif;
    color: #FFF3E0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.react-auth {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: rgba(30, 30, 30, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

h1 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9E9E9E;
    font-size: 18px;
    transition: color 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border-radius: 50px;
    border: none;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: rgba(255, 243, 224, 0.5);
}

.input-group input:focus {
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 243, 224, 0.3);
}

.input-group input:focus + i {
    color: #FFF3E0;
}

button {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #FF7043, #F44336);
    color: white;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

button:hover {
    background: linear-gradient(45deg, #F44336, #FF7043);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.6);
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 243, 224, 0.6);
}

.form-footer a {
    color: #FF7043;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #F44336;
    text-decoration: underline;
}

.alert {
    margin-bottom: 20px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.alert-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #FF8A80;
}

.alert-success {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.35);
    color: #A5D6A7;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #FF7043;
    text-decoration: none;
}

.back-link:hover {
    color: #F44336;
    text-decoration: underline;
}