* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #e2e8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.recover-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recover-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
}

.recover-form h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000;
}

.recover-form label {
    display: none;
}

.recover-form input {
    padding: 0.75rem;
    border: 0.15rem solid #4f7cff;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
}

.link-container {
    text-align: right;
    font-size: 1rem;
    margin-top: -0.5rem;
}

.link-container a {
    text-decoration: none;
    color: #666;
}

.link-container a:hover {
    color: #4f7cff;
    text-decoration: underline;
}

button {
    background-color: #4f7cff;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #3f67e0;
    transform: scale(1.05);
}