@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #09090b, #111827);
    color: #fafafa;
}

.container {
    margin: 0 15px;
}

.form-box {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background-color: #18181b;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
}

h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
    color: #f4f4f5;
}

input {
    width: 100%;
    padding: 12px;
    background-color: #27272a;
    border-radius: 6px;
    border: 1px solid #3f3f46;
    outline: none;
    font-size: 16px;
    color: #fafafa;
    margin-bottom: 20px;
}

input::placeholder {
    color: #71717a;
}

input:focus {
    border-color: #6366f1;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #6366f1;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.5s;
}

button:hover {
    background: #4f46e5;
}

p {
    font-size: 14.5px;
    text-align: center;
    margin-bottom: 10px;
    color: #a1a1aa;
}

p a {
    color: #818cf8;
    text-decoration: none;
}

p a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}