 
/* Login/Register Page Container */
.min-h-screen {
     display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.loginBT{
    padding: 16px 26px;
    background-color: #ffffff;
    color:rgb(237, 123, 28);;
    border-radius: 11px;
    border: none;
    cursor: pointer;
}
/* Form Container */
.x-guest-layout {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    margin: 20px;
}

/* Welcome Section */
.WelcomeSection {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.Welcome-Tite {
     font-size: 32px;
    font-weight: 700;
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px !important;
}

.WelcomeSection p {
    color: #7f8c8d;
    font-size: 16px;
    margin-top: 10px;
}

 

.x-text-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.x-text-input:focus {
    outline: none;
    border-color: #6a11cb;
    background: white;
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

/* Input Error Messages */
.mt-2 {
    margin-top: 8px !important;
    font-size: 14px;
    color: #e74c3c;
    padding-left: 5px;
}

/* Submit Button */
.x-primary-button {
     color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.x-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.x-primary-button:active {
    transform: translateY(0);
}

/* Link Styling */
a.text-sm {
    color: #6a11cb !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

a.text-sm:hover {
    background: rgba(106, 17, 203, 0.1);
    text-decoration: none;
}

/* Button and Link Container */
.flex.items-center.justify-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* Responsive Design */
@media (max-width: 640px) {
    .x-guest-layout {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .Welcome-Tite {
        font-size: 28px;
    }
    
    .flex.items-center.justify-end {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .x-primary-button {
        width: 100%;
    }
}

/* Form Field Spacing */
.mt-4 {
    margin-top: 20px !important;
}

.mb-4 {
    margin-bottom: 16px !important;
}

/* Animation for form */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.x-guest-layout {
    animation: fadeIn 0.6s ease-out;
}

/* Input focus labels */
 
.loginTitle{
             font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
color: #0B644D;
margin-top: 22px;
}
.LoginForm{
    background-color: #0B644D;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    color: white;
    padding: 25px;
    border-radius: 22px;
}
.dontHave{
    color: rgb(237, 123, 28);
}


/* Two-column form layout */
.form-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
  
.form-group .labeloo {
    color: white;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: rgb(237, 123, 28);
    background: white;
    box-shadow: 0 0 0 3px rgba(237, 123, 28, 0.1);
}

/* Footer section */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Button styling */
.loginBT {
    padding: 12px 26px;
    background-color: #ffffff;
    color: rgb(237, 123, 28);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.loginBT:hover {
    background-color: rgb(237, 123, 28);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 123, 28, 0.3);
}

/* Link styling */
.dontHave {
    color: rgb(237, 123, 28);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dontHave:hover {
    background: rgba(237, 123, 28, 0.1);
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .loginBT {
        width: 100%;
    }
    
    .dontHave {
        order: 2;
    }
}

/* Error message styling */
.mt-2 {
    margin-top: 8px !important;
    font-size: 14px;
    color: #ff6b6b;
    padding-left: 5px;
    background: rgba(255, 107, 107, 0.1);
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid #ff6b6b;
}

/* Form styling */
.LoginForm {
    background-color: #0B644D;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    color: white;
    padding: 30px;
    border-radius: 22px;
    max-width: 800px;
    margin: 0 auto;
}

/* Welcome section */
.WelcomeSection {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.Welcome-Tite {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px !important;
}

.WelcomeSection p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 10px;
}

/* Min height for layout */
