.inmove-social-auth {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 14px 0 4px;
}

.inmove-google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    min-height: 46px;
    padding: 0 20px;
    background: #fff;
    color: #333 !important;
    border: 1px solid #dadce0;
    border-radius: 23px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.inmove-google-button:hover {
    background: #f8f9fa;
    color: #222 !important;
    border-color: #c9cdd2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .06);
    text-decoration: none !important;
}

.inmove-google-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #4285f4;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.social-auth-page {
    display: flex;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 90px;
}

.social-auth-card {
    width: 100%;
    max-width: 560px;
    padding: 36px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    text-align: center;
}

.social-auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: #fff0ed;
    color: #fb7968;
    border-radius: 50%;
    font-size: 21px;
}

.social-auth-card h1 {
    margin: 0 0 12px;
    color: #222;
    font-size: 26px;
    line-height: 1.25;
}

.social-auth-lead {
    margin: 0 auto 24px;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}

.social-auth-error {
    margin-bottom: 18px;
    padding: 13px 15px;
    background: #fff4f1;
    color: #d95d4a;
    border: 1px solid #ffd8ce;
    border-radius: 10px;
    font-size: 14px;
}

.social-auth-link-form {
    text-align: left;
}

.social-auth-link-form label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
}

.social-auth-link-form input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    margin-bottom: 18px;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 24px;
    outline: none;
}

.social-auth-link-form input[type="password"]:focus {
    background: #fff;
    border-color: #fb7968;
}

.social-auth-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0 22px;
    background: #fb7968;
    color: #fff !important;
    border: 0;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
}

.social-auth-primary:hover {
    background: #f56857;
    color: #fff !important;
    text-decoration: none !important;
}

.social-auth-links {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    font-size: 13px;
}

.social-auth-links a {
    color: #777;
    text-decoration: none;
}

.social-auth-links a:hover {
    color: #fb7968;
}

.social-auth-card-message .social-auth-primary {
    max-width: 260px;
}

@media (max-width: 767px) {
    .social-auth-page {
        padding-top: 35px;
        padding-bottom: 55px;
    }

    .social-auth-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .social-auth-card h1 {
        font-size: 22px;
    }

    .social-auth-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.social-auth-toast {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 99999;
	display: flex;
	align-items: center;
	gap: 13px;
	width: calc(100% - 40px);
	max-width: 390px;
	padding: 16px 18px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
	opacity: 1;
	transform: translateY(0);
	transition: opacity .3s ease, transform .3s ease;
}

.social-auth-toast-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	background: #eef8f1;
	color: #58a772;
	border-radius: 50%;
	font-size: 15px;
}

.social-auth-toast-content {
	flex: 1;
	min-width: 0;
}

.social-auth-toast-title {
	margin-bottom: 2px;
	color: #222;
	font-size: 14px;
	font-weight: 700;
}

.social-auth-toast-text {
	color: #777;
	font-size: 13px;
	line-height: 1.4;
}

.social-auth-toast-close {
	align-self: flex-start;
	padding: 0;
	background: transparent;
	border: 0;
	color: #aaa;
	font-size: 21px;
	line-height: 1;
	cursor: pointer;
}

.social-auth-toast-close:hover {
	color: #555;
}

.social-auth-toast-hide {
	opacity: 0;
	transform: translateY(-8px);
}

@media (max-width: 600px) {
	.social-auth-toast {
		top: 14px;
		right: 14px;
		left: 14px;
		width: auto;
		max-width: none;
	}
}