body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
background-image: url('../imgs/background-test2.jpg');

background-repeat: no-repeat;
background-size: cover;
background-position: center;
filter: opacity(95%);
	

}

body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: inherit;
	
    filter: grayscale(100%) opacity(50%);

		position: relative;
    
    
    
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
	margin-top: -40px;
}

.logo img {
    max-width: 300px;
	pointer-events: none;
}

.login-form {
    display: flex;
    flex-direction: column;
}

@media (max-width: 400px) {
    .login-container {
        margin: 0 10px;
        width: auto;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    border: 4px solid #f3f3f3; /* Світлий колір */
    border-top: 4px solid #3498db; /* Синій колір */
    border-radius: 50%;
    width: 13px;
    height: 13px;
    animation: spin 2s linear infinite;
}

.input-group {
    margin-bottom: 15px;
}

input[type="tel"] {
    width: 85%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
	text-align: center;
	font-size: 16px;
}

button {
    background-color: #0078d7;
    color: white;
    padding: 10px;
	width: 100%;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
	min-height: 40px;
	font-size: 16px;
}

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


.sms_code_submit {
    background-color: #247727;
}

.sms_code_submit:hover {
    background-color: #31a435;
}


.resend_sms {
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
	text-align:center;
	display: block;
}
.resend_sms:hover {
	color: #5d5e5c;
}

.kaskadb-auth-button {
	display: flex;
    justify-content: right;
}