/* Multi-Step Form Styles - Clean Design */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Exo:wght@400;500;600;700;800;900&display=swap');

/* Main Container */
.msf-container {
    width: 100%;
    font-family: 'Exo', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Layout Wrapper - Two Column */
.msf-layout-wrapper {
    display: flex;
    background: #101B2C;
    border-radius: 20px;
    box-shadow: 0px 25px 52.4px 0px #0000001A;
    min-height: 600px;
    align-items: stretch;
}

/* Left Panel - Image */
.msf-left-panel {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #101B2C;
    padding: 0px;
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.msf-left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Panel - Form */
.msf-right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101B2C;
    padding: 40px 40px 20px 40px;
    width: 50%;
    border-radius: 0 20px 20px 0;
}

/* Form Wrapper */
.msf-form-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
}

/* Welcome Header - Email Step */
.msf-welcome-header {
    margin-bottom: 40px;
    text-align: left;
}

.msf-welcome-text {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    line-height: 24px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.msf-competition-text {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.msf-competition-accent {
    color: #00E0E0;
}

/* Form Header Text - Create Account Step */
.msf-form-header-text {
    margin-bottom: 30px;
    text-align: left;
}

.msf-create-account-title {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.msf-login-link-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.msf-login-link {
    color: #00E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.msf-login-link:hover {
    color: #00d4d4;
    text-decoration: underline;
}

/* Steps */
.msf-step {
    display: none;
}

.msf-step.active {
    display: block;
}

/* Form Body */
.msf-form-body {
    margin-bottom: 30px;
}

/* Field Groups */
.msf-field-group {
    margin-bottom: 12px;
    position: relative;
}

.msf-field-group:last-child {
    margin-bottom: 0;
}

/* Labels */
.msf-label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Input Fields */
.msf-input {
    width: 100%;
    height: 44px;
    padding: 4px 12px !important;
    border: 1px solid oklab(0.999994 0.0000455678 0.0000200868 / 0.1) !important;
    border-radius: 8px !important;
    background: #232F42 !important;
    color: #ffffff !important;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 100%;
}
.msf-input::placeholder {
    font-size: 14px !important;
    font-family: 'Inter';
}
button.msf-password-toggle {
    border: 0px !important;
}
button.msf-password-toggle {
    border: 0px !important;
    color: #454F5F;
    display: flex;
    align-items: center;
    padding: 0 !important;
    justify-content: center;
}

.msf-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 0%;
}

.msf-input:focus {
    border-color: #00E0E0;
    outline: none;
}

.msf-input.error {
    border-color: #ff6b6b;
}

/* Phone Row */
.msf-phone-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.msf-details-step.msf-step {
    width: 100% !important;
}

.msf-phone-code {
    width: 96px !important;
    flex-shrink: 0;
    text-align: center;
    background: #232F42;
    padding: 0px !important;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
}

.msf-phone-number {
    flex: 1;
}

/* OTP Row */
.msf-otp-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.msf-otp-input {
    flex: 1;
    text-align: center;
    letter-spacing: 4px;
    font-size: 16px;
    font-weight: 600;
}

/* Password Wrapper */
.msf-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.msf-password-input {
    width: 100%;
    padding-right: 45px;
}

.msf-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #00E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msf-password-toggle:hover {
    color: #00d4d4;
}

.msf-password-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.msf-eye-off-icon {
    display: none;
}

.msf-password-toggle.show-password .msf-eye-icon {
    display: none;
}

.msf-password-toggle.show-password .msf-eye-off-icon {
    display: block;
}

/* Terms Checkbox */
.msf-terms-group {
    margin-top: 20px;
}

.msf-terms-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.msf-terms-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00E0E0;
}

.msf-terms-checkbox.error {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
    border-radius: 2px;
}

.msf-terms-group .msf-error-message {
    margin-top: 8px;
}

.msf-terms-text {
    flex: 1;
}

.msf-terms-link {
    color: #00E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.msf-terms-link:hover {
    color: #00d4d4;
    text-decoration: underline;
}

/* Form Footer */
.msf-form-footer {
    margin-top: 30px;
}

.msf-navigation-buttons {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

/* Buttons */
.msf-btn {
    border: 1px solid transparent !important;
    border-radius: 7px !important;
    font-family: 'Exo', sans-serif;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px;
    outline: none;
    height: 39px;
    color: #071327 !important;
    align-items: center;
    background-image: linear-gradient(to right in oklab, rgb(0, 224, 224) 0px, rgb(16, 185, 129) 100%) !important;	/* Accent color for effects/spinner */
	--msf-accent: #00E0E0;
    font-size: 13px !important;
}

/* Button loading state with spinner */
.msf-btn.loading {
	position: relative;
	pointer-events: none;
	opacity: 0.9;
}
.msf-btn.loading::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	border-radius: 50%;
	/* Creative dual-ring spinner using accent */
	background:
		conic-gradient(from 0turn, var(--msf-accent) 0.0turn 0.25turn, transparent 0.25turn 1turn) padding-box;
	-webkit-mask:
		radial-gradient(farthest-side, #0000 calc(100% - 2px), #000 calc(100% - 2px)),
		radial-gradient(farthest-side, #000 99%, #0000) content-box;
	mask:
		radial-gradient(farthest-side, #0000 calc(100% - 2px), #000 calc(100% - 2px)),
		radial-gradient(farthest-side, #000 99%, #0000) content-box;
	animation: msf-spin 0.8s linear infinite;
	vertical-align: -3px;
	box-shadow: 0 0 0 2px rgba(0, 224, 224, 0.15);
}

@keyframes msf-spin {
	to { transform: rotate(360deg); }
}

/* Full-screen loading overlay with 3D gradient spinner */
.msf-loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(15 27 47 / 75%);
	backdrop-filter: blur(3px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.msf-loading-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* 3D Gradient Spinner */
.msf-3d-spinner {
	width: 80px;
	height: 80px;
	position: relative;
}

.msf-3d-spinner::before,
.msf-3d-spinner::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 4px solid transparent;
	animation: msf-spin-3d 1.2s linear infinite;
}

.msf-3d-spinner::before {
	top: 0;
	left: 0;
	border-top-color: #00E0E0;
	border-right-color: #00C8C8;
	box-shadow: 
		0 0 20px rgba(0, 224, 224, 0.5),
		0 0 40px rgba(0, 224, 224, 0.3),
		inset 0 0 20px rgba(0, 224, 224, 0.2);
	filter: drop-shadow(0 0 10px rgba(0, 224, 224, 0.6));
}

.msf-3d-spinner::after {
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-bottom-color: #00E0E0;
	border-left-color: #00C8C8;
	animation: msf-spin-3d-reverse 1s linear infinite;
	box-shadow: 
		0 0 15px rgba(0, 200, 200, 0.4),
		inset 0 0 15px rgba(0, 200, 200, 0.2);
}

/* Inner glow ring */
.msf-3d-spinner-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 224, 224, 0.3) 0%, transparent 70%);
	box-shadow: 
		0 0 30px rgba(0, 224, 224, 0.6),
		inset 0 0 20px rgba(0, 224, 224, 0.4);
	animation: msf-pulse-glow 2s ease-in-out infinite;
}

@keyframes msf-spin-3d {
	0% {
		transform: rotate(0deg);
		filter: drop-shadow(0 0 10px rgba(0, 224, 224, 0.6)) 
		        drop-shadow(0 0 20px rgba(0, 224, 224, 0.4));
	}
	50% {
		filter: drop-shadow(0 0 15px rgba(0, 224, 224, 0.8)) 
		        drop-shadow(0 0 30px rgba(0, 224, 224, 0.5));
	}
	100% {
		transform: rotate(360deg);
		filter: drop-shadow(0 0 10px rgba(0, 224, 224, 0.6)) 
		        drop-shadow(0 0 20px rgba(0, 224, 224, 0.4));
	}
}

@keyframes msf-spin-3d-reverse {
	0% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes msf-pulse-glow {
	0%, 100% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

/* Ensure secondary buttons inherit accent and look good with spinner */
.msf-btn-secondary {
	--msf-accent: #00E0E0;
}

.msf-btn-primary {
    background: #00E0E0;
    border-color: #00E0E0;
    color: #ffffff;
    flex: 1;
}

.msf-btn-primary:hover:not(:disabled) {
    background: #00d4d4;
    border-color: #00d4d4;
}

.msf-btn-primary:active:not(:disabled) {
    background: #00b8b8;
    border-color: #00b8b8;
}

.msf-btn-secondary {
    background: transparent;
    border-color: #00E0E0;
    color: #00E0E0;
}

.msf-btn-secondary:hover:not(:disabled) {
    background: rgba(0, 224, 224, 0.1);
    color: #00d4d4;
    border-color: #00d4d4;
}

.msf-btn-send-code {
    background: #00E0E0 !important;
    border-color: #00E0E0 !important;
    color: #071327 !important;
    white-space: nowrap !important;
    min-width: 100px;
    flex-shrink: 0;
}

.msf-btn-send-code:hover:not(:disabled) {
    background: #00d4d4;
    border-color: #00d4d4;
}

.msf-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.msf-btn:focus-visible {
    outline: 2px solid #00E0E0;
    outline-offset: 2px;
}

/* Change Email Link */
.msf-change-email-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: #00E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.msf-change-email-link:hover {
    color: #00d4d4;
    text-decoration: underline;
}

/* Error Message */
.msf-error-message {
    display: none;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #ff6b6b;
    font-weight: 500;
}

.msf-error-message:not(:empty) {
    display: block;
}

/* Field Hint */
.msf-field-hint {
    display: block;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* OTP Actions */
.msf-otp-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.msf-otp-timer {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    margin-left: auto;
}

/* Verification Badge */
.msf-verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    border-radius: 12px;
    color: #10B981;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.msf-verification-badge svg {
    width: 14px;
    height: 14px;
}

/* Success Message */
.msf-success-message {
    text-align: center;
    padding: 20px 0;
}

.msf-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
}

.msf-success-message .msf-step-title {
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.msf-success-message .msf-step-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* Quick Tips Section */
.msf-success-info {
    background: #232F42;
    border: none;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.msf-success-info h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-style: normal;
	font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.msf-success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.msf-success-info li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
	font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    padding: 8px 0 8px 24px;
    position: relative;
    margin-bottom: 8px;
}

.msf-success-info li:last-child {
    margin-bottom: 0;
}

.msf-success-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
}

.msf-redirect-notice {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 0 0;
}

.msf-countdown {
    color: #00E0E0;
    font-weight: 600;
}

.msf-info-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
.msf-step{
    width: 100%;
}
/* Toast Container */
.msf-toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.msf-btn:hover {
    box-shadow: rgb(0, 224, 224) 0px 0px 31px -13px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    border-color: #00d4d4 !important;
    filter: drop-shadow(rgba(255, 215, 0, 0.5) 0px 0px 10px);
}
.msf-toast {
    pointer-events: auto;
    min-width: 260px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(16, 27, 44, 0.95);
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    transform: translateY(-6px);
    opacity: 0;
    transition: all 180ms ease;
    font-family: 'Inter', sans-serif;
}

.msf-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.msf-toast.success {
    border-color: rgba(16, 185, 129, 0.6);
}

.msf-toast.error {
    border-color: rgba(255, 107, 107, 0.7);
}

.msf-toast.info {
    border-color: rgba(0, 224, 224, 0.7);
}

.msf-toast .msf-toast-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.msf-toast .msf-toast-msg {
    opacity: 0.92;
}
.msf-layout-wrapper {
    width: 100%;
    padding: 20px;
    margin: 0 auto ;
}
.msf-left-panel img {
    border-radius: 18px !important;
}
button.msf-password-toggle:hover {
    background: transparent !important;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .msf-layout-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .msf-left-panel {
        width: 100%;
        min-height: 300px;
        padding: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .msf-left-image {
        object-fit: cover;
    }
    
    .msf-right-panel {
        width: 100%;
        display: block;
        padding: 20px;
        border-radius: 0 0 20px 20px;
    }
    .msf-form-wrapper {
        max-width: 100%;
    }
    
    .msf-competition-text {
        font-size: 32px;
    }
    
    .msf-layout-wrapper {
        width: 100%;
    }
    
    .msf-success-info {
        padding: 16px;
        margin: 20px 0;
        background: #232F42;
    }
    
    .msf-success-info h3 {
		font-size: 14px;
        margin-bottom: 12px;
    }
    
    .msf-success-info li {
		font-size: 10px;
        padding: 6px 0 6px 20px;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .msf-container {
        min-height: auto;
    }
    
    .msf-layout-wrapper {
        min-height: auto;
    }
    
    .msf-left-panel {
        width: 100%;
        min-height: 200px;
        padding: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .msf-right-panel {
        width: 100%;
        padding: 15px;
        border-radius: 0 0 20px 20px;
    }
    
    .msf-layout-wrapper {
        width: 100%;
    }
    
    .msf-success-info {
        padding: 14px;
        margin: 16px 0;
        background: #232F42;
    }
    
    .msf-success-info h3 {
		font-size: 14px;
        margin-bottom: 12px;
    }
    
    .msf-success-info li {
		font-size: 9px;
        padding: 5px 0 5px 18px;
        margin-bottom: 5px;
    }
    
    .msf-form-wrapper {
        max-width: 100%;
    }
    
    .msf-welcome-text {
        font-size: 20px;
    }
    
    .msf-competition-text {
        font-size: 28px;
    }
    
    .msf-create-account-title {
        font-size: 20px;
    }
    
    .msf-otp-row {
        flex-direction: column;
    }
    
    .msf-btn-send-code {
        width: 100%;
        min-width: auto;
    }
    
    .msf-navigation-buttons {
        flex-direction: column;
    }
    
    .msf-btn {
        width: 100%;
    }
    
    .msf-welcome-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 520px) {
    .msf-welcome-text {
        font-size: 18px;
    }
    .msf-left-panel img {
        height: 350px;
    }
    .msf-welcome-header {
        margin-bottom: 20px;
    }
    .msf-layout-wrapper {
        width: 100%;
    }
    .msf-right-panel {
        padding: 15px 0px;
    }
    .msf-competition-text {
        font-size: 24px;
    }
    
    .msf-create-account-title {
        font-size: 18px;
    }
    
    .msf-input {
        font-size: 11px;
    }
}

/* Country Code Dropdown Styles */
.msf-country-code-wrapper {
    position: relative;
    width: 30%;
}

.msf-country-code-search {
    width: 100%;
    cursor: pointer;
}

.msf-country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    background: #232F42;
    z-index: 1000;
    margin-top: 5px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(30, 30, 30, 0.98);
}

.msf-country-dropdown::-webkit-scrollbar {
    width: 6px;
}

.msf-country-dropdown::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 3px;
}

.msf-country-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.msf-country-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.msf-country-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.msf-country-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.msf-country-item:last-child {
    border-bottom: none;
}

.msf-country-flag {
    font-size: 20px;
    margin-right: 12px;
    width: 30px;
    text-align: center;
}

.msf-country-name {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.msf-country-code {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-left: 10px;
}