* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f8f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.logo-icon {
    color: white;
    width: 200px;
    border-radius: 5px;
}

h1 {
    color: #32324d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #8e9099;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #32324d;
    font-weight: 500;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dbdade;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #696cff;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e9099;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-password {
    color: #696cff;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: #696cff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: #5f62ff;
}

.create-account {
    text-align: center;
    margin: 1.5rem 0;
}

.create-account a {
    color: #696cff;
    text-decoration: none;
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dbdade;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 10px;
    color: #8e9099;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #dbdade;
    border-radius: 6px;
    background: white;
    color: #8e9099;
    cursor: pointer;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #f8f7fa;
    color: #696cff;
    border-color: #696cff;
}

.facebook:hover {
    color: #3b5998;
    border-color: #3b5998;
}

.twitter:hover {
    color: #1da1f2;
    border-color: #1da1f2;
}

.github:hover {
    color: #333;
    border-color: #333;
}

.google:hover {
    color: #db4437;
    border-color: #db4437;
}