/* Import Outfit font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f9f8f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #343328;
}

/* Container */
.login-container,
.profile-container {
    background-color: #ffffff;
    border: 1px solid #dbdad1;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Headings */
h2 {
    color: #202c31;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Input Fields */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #dbdad1;
    border-radius: 8px;
    background-color: #fafafa;
    font-size: 1rem;
    color: #343328;
}

/* Button */
button {
    width: 100%;
    padding: 14px;
    background-color: #838065;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover {
    background-color: #4c4d3d;
}

/* Error Message */
.error {
    color: #f6e7e7;
    background-color: #11111199;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.perks-container {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #dbdad1;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #343328;
}

.perks-container button {
    margin-left: 10px;
    padding: 6px 12px;
    font-size: 0.9rem;
    background-color: #202c31;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.perks-container button:hover {
    background-color: #343328;
}