body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 320px;
    width: 90%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 22px;
}

p {
    color: #555555;
    font-size: 0.7em;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 4px;
    color: #555555;
    font-weight: 500;
    font-size: 13px;
}

input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #e0e0e0;
    box-sizing: border-box;
}

input[type="email"]:focus {
    border-bottom: 2px solid #007bff;
    box-shadow: 0 1px 0 0 #007bff;
    outline: none;
}

.btn-reset {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.btn-reset:hover {
    background-color: #0056b3;
}

.action-row {
    margin-top: 20px;
}

.links-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.login-link a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
}

.login-link a:hover {
    color: #007bff;
}

@media (max-width: 480px) {
    .btn-reset {
        font-size: 14px;
    }
}
