* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-100: #3692ff;
    --primary-200: #1967d6;
    --primary-300: #1251aa;

    --error-red: #f74747;

    --secondary-900: #111827;
    --secondary-800: #1f2937;
    --secondary-700: #374151;
    --secondary-500: #6b7280;
    --secondary-400: #9ca3af;
    --secondary-200: #e5e7eb;
    --secondary-100: #f3f4f6;
    --secondary-50: #f9fafb;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: min(640px, 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* login form */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
}

.login-btn {
    border-radius: 9999px;
    background-color: var(--primary-100);
    width: 100%;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 124px;
}

.email-input,
.password-input {
    border: none;
    background-color: var(--secondary-100);
    border-radius: 12px;
    width: 100%;
    height: 56px;
    padding: 16px 24px;
}

.email-field,
.password-field {
    position: relative;
    width: 100%;
}

.email-field h2,
.password-field h2 {
    margin-bottom: 16px;
}

.password-input {
    padding-right: 56px;
}

.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.email-input:focus, .password-input:focus {
    outline: 1px solid var(--primary-100);
}



/* social login links */
.social-link {
    display: flex;
    width: 100%;
    min-height: 74px;
    padding: 16px 23px;
    background-color: #e6f2ff;
    border-radius: 8px;
    align-items: center;
    gap: 10px;
}

.social-link-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.social-link-title {
    margin: 0;
}

.social-link-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* signup link */
.signup-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.signup-link a {
    color: var(--primary-100);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}