.folp-container{
	max-width: 360px;
    margin: auto;
}

.folp-container button{
	float: right;
    margin: 30px 0;
	min-width: 150px;
}

.folp-login{
    max-width:300px;
    padding:20px;
    border-radius:8px;
    background:#fff;
}

.folp-login input,
.folp-login select{
    width:100%;
    margin:5px 0;
    padding:10px;
}

.folp-login button{
    width:100%;
    padding:10px;
    background:#0073aa;
    color:white;
    border:none;
}

.folp-phone-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    
}

.folp-country {
    font-weight: 600;
    margin-right: 6px;
}

.folp-phone-wrap input {
    border: none;
    outline: none;
    flex: 1;
}



.country-code {
  padding: 8px 10px;
	margin: 0;
  background-color: #e9ecef; /* Optional: slight background for the span */
  
}

.phone-number-input {
  flex: 1; /* Allows the input to grow and fill the remaining space */
  padding: 8px 10px;
  border: none; /* Remove default input border */
  outline: none; /* Remove focus outline */
}

/* Optional: Add focus styling to the container */
.phone-input-container:focus-within {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.folp-loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: folpSpin 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes folpSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
