#page-wrapper.smaller-text {
	font-size: 12px;
	line-height: 15px;
}

.StripeElement {
    line-height: 1.429 !important;
    padding-top: 10px !important;
    border: 3px solid #5e5e5e;
    height: 45px;
}

/* Modern R2Park UI Styles */

/* Modern button styling - Primary (Navy Blue) */
.btn-modern-primary {
    background-color: #1e3a5f !important;
    border-color: #1e3a5f !important;
    border-radius: 25px !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    color: #fff !important;
    border: 2px solid #1e3a5f !important;
    transition: all 0.3s ease !important;
    font-size: 22px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.btn-modern-primary:hover,
.btn-modern-primary:focus,
.btn-modern-primary:active {
    background-color: #152d47 !important;
    border-color: #152d47 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.3) !important;
}

/* Modern button styling - Secondary (Outlined) */
.btn-modern-secondary {
    background-color: #fff !important;
    border: 2px solid #1e3a5f !important;
    color: #1e3a5f !important;
    border-radius: 25px !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 22px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.btn-modern-secondary:hover,
.btn-modern-secondary:focus,
.btn-modern-secondary:active {
    background-color: #f8f9fa !important;
    border-color: #152d47 !important;
    color: #152d47 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.15) !important;
}

/* Input field with icon */
.input-with-icon {
    position: relative;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.input-with-icon .form-control {
    padding-left: 50px !important;
    padding-right: 45px !important; /* Space for clear button */
    border-radius: 30px !important;
    border: 2px solid #ddd !important;
    height: 60px !important;
    font-size: 20px !important; /* Match subtitle text size */
    transition: all 0.3s ease !important;
}

.input-with-icon .form-control:focus {
    border-color: #1e3a5f !important;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.15) !important;
    outline: none !important;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 22px;
    z-index: 10;
    pointer-events: none;
}

/* Clear button for search input */
.input-with-icon .clear-input {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
    display: none; /* Hidden by default */
    transition: color 0.2s ease;
}

.input-with-icon .clear-input:hover {
    color: #1e3a5f;
}

.input-with-icon .clear-input.show {
    display: block;
}

@media(max-width : 1200px){

}

@media(max-width : 992px){

}

/* Button container for centering narrower buttons */
.button-container {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo responsive sizing */
.logo-container img {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media(max-width : 768px){
	.btn-modern-primary,
	.btn-modern-secondary {
		padding: 16px 30px !important;
		font-size: 20px !important;
	}
	
	.input-with-icon .form-control {
		font-size: 18px !important;
	}
	
	/* Reduce logo size on mobile */
	.logo-container img {
		max-height: 200px !important;
		margin-bottom: 15px !important;
		margin-top: 15px !important;
	}
	
	.logo-container .spacer {
		height: 30px !important;
	}
}

@media(max-width : 480px){
	.btn-modern-primary,
	.btn-modern-secondary {
		padding: 14px 25px !important;
		font-size: 18px !important;
	}
	
	.input-with-icon .form-control {
		height: 55px !important;
		font-size: 16px !important;
	}
	
	.input-with-icon .input-icon {
		font-size: 18px !important;
		left: 18px;
	}
	
	.input-with-icon .clear-input {
		font-size: 18px !important;
	}
	
	/* Further reduce logo on small phones */
	.logo-container img {
		max-height: 150px !important;
		margin-bottom: 10px !important;
		margin-top: 10px !important;
	}
	
	.logo-container .spacer {
		height: 20px !important;
	}
}

@media(max-width : 320px){
	.login-panel {
		margin-top: 5%;	
	}
	
	.btn-modern-primary,
	.btn-modern-secondary {
		padding: 10px 15px !important;
		font-size: 13px !important;
	}
}