body {
    font-family: 'Roboto', sans-serif;
}
.btn-circle {
    border-radius: 50%; 
    width: 40px; /* Adjust size as needed */
    height: 40px; 
    padding: 0; 
  }

  .user-input-wrp {
	position: relative;
}

.user-input-wrp .inputText{
	width: 100%;
	outline: none;
	border:none;
	border-bottom: 1px solid #777;
 	box-shadow: none !important;
}
.user-input-wrp .inputText:focus{
	border-color: blue;
	border-width: medium medium 2px;
}
.user-input-wrp .floating-label {
	position: absolute;
	pointer-events: none;
	top: 18px;
	left: 10px;
	transition: 0.2s ease all;
}
.user-input-wrp input:focus ~ .floating-label,
.user-input-wrp input:not(:focus):valid ~ .floating-label{
	top: 0px;
	left: 10px;
	font-size: 13px;
	opacity: 1;
}
.grupa-name, .telefon-contact {
	font-size: 12px; /* Adjust to your desired size */
}
.icon-spacing {
    margin-left: 15px;
}

.aditional-text {
    font-size: 12px;
    margin-top: -5px;
    margin-bottom: 5px;
    line-height: 1;

}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

/* login Overlay style */
.loginoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Black with 75% transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998; /* Ensure it's above other content */
}

/* Center content container */
.overlay-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%; /* Adjust width as needed */
    max-width: 900px; /* Limit max width */
    background-color: white; /* Optional, for form background */
    border-radius: 8px; /* Optional, for rounded corners */
}

/* Column styles */
.column {
    padding: 20px;
    width: 50%; /* Split the columns in half on larger screens */
}

/* Image column */
.image-column img {
    width: 100%; /* Make the image responsive */
    height: auto;
    border-radius: 8px; /* Optional, rounded corners for the image */
}

/* Form column */
.form-column form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-column input {
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form-column button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-column button:hover {
    background-color: #45a049;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .overlay-content {
        flex-direction: column; /* Stack the columns vertically */
        width: 90%; /* Make the content width more suitable for mobile */
        max-width: none; /* Remove the max-width constraint */
    }

    .column {
        width: 100%; /* Each column takes full width on mobile */
    }

    .form-column {
        padding: 10px; /* Adjust padding for mobile */
    }

    .image-column img {
        width: auto; /* Keep the original width */
        max-width: none; /* Prevent any scaling down */
        display: block; /* Ensures proper positioning */
        margin: 0 auto; /* Center the image */
    }
}

icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.icon-sm {
    width: 2rem;
    height: 2rem;
    
}

.floating-label {
    color: rgba(7, 59, 76, 0.8);
}






