:root {
    --bg-color: #050505;
    --accent-color: #faf685;
    /* Premium Blue */
    --text-primary: #ffffff;
    --text-secondary: #99ec3b;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.5);
    --error-color: #ff453a;
    --success-color: #30d158;
    --font-main: 'Exo 2', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

hr {
    border: 0;
    /* Set the height of the line */
    height: 1px;
    /* Set the color */
    background-color: #414141;

}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

#logo {
    margin: auto;
    width: 342px;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #5856d6);
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.logo-placeholder svg {
    width: 40px;
    height: 40px;
    fill: white;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    /* margin-bottom: 1rem; */
    letter-spacing: -0.02em;
    border: 0;
    /* Set the height of the line */
    height: 1px;
    /* Set the color */
    background-color: #5f5f5f;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1.5em;
    /* font-style: italic; */
}

.form-card {
    /* background: var(--glass-bg); */
    /* backdrop-filter: blur(20px); */
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid var(--glass-border); */
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
}

input:-internal-autofill-selected {
    background-color: #000000 !important;
}

button {
    width: 100%;
    padding: 1rem;
    background: black;
    color: #e6e84e;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 2px #807a18, 0 0 8px 3px #807a18;
    opacity: 0.9;
}

button:hover {
    /* background: #0062cc; */
    transform: scale(1.01);
    /* box-shadow: 0 5px 15px rgba(0, 122, 255, 0.4); */
    opacity: 1;
}

button:active {
    transform: translateY(0);
}

.message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: none;
}

.message.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

.message.error {
    background: rgba(255, 69, 58, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(255, 69, 58, 0.2);
}

.message.success {
    background: rgba(48, 209, 88, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(48, 209, 88, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }
}