/* Reset */
body, h1, p, label, input, button, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

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

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.login-form .input-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    color: #ccc;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
}

.password-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.password-wrapper input {
    flex: 1;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
}

.forgot-password {
    font-size: 12px;
    color: #ff4d4d;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-button:hover {
    background-color: #e64444;
}

.divider {
    font-size: 12px;
    color: #ccc;
    margin: 10px 0;
}

.google-login {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-login img {
    max-width: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}
