html {
    font-family: Pretendard;
}

body {
    color: #374151;
}

.container {
    max-width: 640px;
    margin: 0 auto;
}

.logo2 {
    width: 396px;
    height: 132px;
}

.logo-wrap {
    display: block;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    height: 48px;
    padding: 16px 24px;
    background-color: #f3f4f6;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
}

.form-group input::placeholder {
    font-size: 16px;
    color: #1f2937;
}

.password-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.password-button {
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
    padding: 0;
}

.password-button img {
    width: 100%;
    height: auto;
}

input.error {
    border-color: red;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 8px;
    display: block;
    margin-left: 16px;
}

.login-button {
    width: 100%;
    border-radius: 40px;
    border: none;
    padding: 16px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    background-color: #3692ff;
}

.login-method-container {
    background-color: #e6f2ff;
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 16px 23px;
    margin: 24px 0;
}

.login-button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.login-method h3 {
    font-size: 16px;
}

.login-method-wrap {
    display: flex;
    gap: 16px;
}

.signup-go {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.social-login-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.signup-go a {
    color: #3182f6;
}

/* Mobile: 375px~767px */
@media (max-width: 767px) {
    .container {
        max-width: 432px;
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 80px;
    }
    .logo2 {
        width: 198px;
        height: 66px;
    }
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .password-button {
        right: 16px;
    }
}
