* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: radial-gradient(circle at top, #141b2d, #070a12);
    color: #F5F7FA;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 227, 255, 0.15), transparent 60%);
    top: -150px;
    right: -150px;
    filter: blur(40px);
}


.container {
    text-align: center;
    max-width: 700px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
    letter-spacing: 30%;

    b {
        font-weight: bold;
    }
}

.moon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    border-radius: 50%;
    background: linear-gradient(145deg, #c7cbd6, #4de3ff);
    box-shadow: 0 0 20px rgba(77, 227, 255, 0.5);
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(90deg, #4de3ff, #7c6cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: rgba(245, 247, 250, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.card>form {
    gap: 10px;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #4de3ff, #7c6cff);
    color: #0b1020;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77, 227, 255, 0.2);
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: rgba(245, 247, 250, 0.4);
}

:root {
    --bg: #0b1020;
    --card: #131a2e;
    --border: rgba(255, 255, 255, .08);
    --text: #f5f7fa;
    --muted: #98a2b3;
    --cyan: #4de3ff;
    --violet: #7c6cff;
}

input,
.select,
.textarea {
    width: 100%;
    background: #0f1528;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: 14px 16px;
    outline: none;
    transition: .25s;
}

input:focus,
.select:focus,
.textarea:focus {
    border-color: var(--cyan);
    box-shadow:
        0 0 0 3px rgba(77, 227, 255, .12),
        0 0 20px rgba(77, 227, 255, .15);
}