main {
    display: flex;
    justify-content: center;
}

.login-area {
    width: 320px;
    margin: 40px auto;
    padding: 30px 25px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-input {
    margin-bottom: 20px;
}

.login-input label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.login-input input {
    width: 100%;
    padding: 10px 14px;
    border: 1.8px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.login-input input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.login-area>div:last-child {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.login-area button {
    flex: 1;
    padding: 10px 0;
    margin: 0 5px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

.login-area button:first-child {
    margin-left: 0;
}

.login-area button:last-child {
    margin-right: 0;
    background-color: #6c757d;
    /* 회원가입 버튼은 회색톤 */
}

.login-area button:hover {
    background-color: #0056b3;
}

.login-area button:last-child:hover {
    background-color: #5a6268;
}