.kakao-oauth-login-container {
margin: 15px 0;
display: flex;
justify-content: center;
} .kakao-oauth-login-button {
display: flex;
align-items: center;
justify-content: center;
background-color: #FEE500;
color: #000000;
border: none;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
}
.kakao-oauth-login-button:hover {
background-color: #FDD835;
color: #000000;
transform: translateY(-1px);
}
.kakao-oauth-login-button:active {
transform: translateY(0);
}
.kakao-oauth-login-button:focus {
outline: 2px solid #FDD835;
outline-offset: 2px;
} .kakao-oauth-icon {
display: inline-flex;
align-items: center;
margin-right: 10px;
width: 20px;
height: 20px;
}
.kakao-oauth-icon svg {
width: 100%;
height: 100%;
fill: #000000;
} .kakao-oauth-text {
text-align: center;
} #login .kakao-oauth-login-container {
margin-top: 20px;
margin-bottom: 0;
} #login form .kakao-oauth-login-button,
#registerform .kakao-oauth-login-button {
box-sizing: border-box;
} body.rtl .kakao-oauth-icon {
margin-right: 0;
margin-left: 10px;
} .kakao-oauth-login-button.loading {
pointer-events: none;
opacity: 0.7;
}
.kakao-oauth-login-button.loading:after {
content: "";
display: inline-block;
width: 14px;
height: 14px;
margin-left: 8px;
border: 2px solid #000;
border-radius: 50%;
border-top-color: transparent;
animation: kakao-spinner 0.6s linear infinite;
}
@keyframes kakao-spinner {
to {
transform: rotate(360deg);
}
} .kakao-oauth-login-button:focus-visible {
outline: 2px solid #000;
outline-offset: 2px;
}