@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
}

body{
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.login-container {
	width: 100%;
	max-width: 460px; 
	background-color: white;border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 40px;
}
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo span {
    color: #e50000;
    font-size: 32px;
    font-weight: bold;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #1e90ff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.checkbox-group input {
    margin-right: 8px;
}

.login-button {
    width: 100%;
    padding: 15px;
    background-color: #1e90ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}
.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 15px;
    margin-top: 20px;
    font-size: 13px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -10px;
    color: #999;
}

.footer-links a:hover {
    text-decoration: underline;
}

.input-group input::placeholder {
    color: #bbb;
}