.login-background{
    background-color: #FFE9DD;
}
.main-container {
    width: 100%;
    max-width: 72rem;
    margin: auto;
}

.login-container {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

/* Responsive Grid */
@media (min-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Login Form Section */
.login-form-section {
    display: flex;
    height: 100%;
}

.side-bar-container {
    display: flex;
    align-items: center;
}

.side-bar {
    width: 0.8rem;
    background-color: #fb8503;
    height: 180.88px;
}

.form-content {
    padding: 2rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.stars-decoration {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.form-inner {
    width: 100%;
    max-width: 28rem;
}

.title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #fb8503;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Form Elements */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #fb8503;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: #374151;
    background-color: white;
    border: 1px solid #e5e7eb;
    /* border-radius: 9999px; */
    box-sizing: border-box;
    transition: box-shadow 0.2s;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fb8503;
}

.password-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding-right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
}

.password-toggle:hover {
    color: #fb8503;
}

.eye-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    cursor: pointer;
    position: relative;
}

.checkbox-custom-wrapper {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
}

.checkbox-hidden {
    opacity: 0;
    position: absolute;
    height: 1.25rem;
    width: 1.25rem;
    cursor: pointer;
}

.checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: -35px;
}
.checkbox-custom .check-icon {
    height: 1rem;
    width: 1rem;
    color: white;
    display: none;
}
.checkbox-custom.checked {
    background-color: #fb8503;
    border-color: #fb8503;
}
.checkbox-custom.checked .check-icon {
    display: block;
}


.link {
    font-weight: bold;
    color: #4b5563;
    text-decoration: none;
}

.link:hover {
    color: #fb8503;
}

.link.bold {
    font-weight: bold;
    color: #fb8503;
}
.link.bold:hover {
    text-decoration: underline;
}

.button-primary {
    width: 100%;
    padding: 0.75rem 0;
    color: white;
    background-color: #fb8503;
    border-radius: 9999px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.button-primary:hover {
    background-color: #e07300;
}

.button-primary:focus {
    outline: none;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #fb8503;
}

.separator {
    margin: 2rem 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, #fb8503, transparent);
}

.signup-text {
    text-align: center;
    color: #4b5563;
}

.wavy-lines-container {
    margin-top: 1.5rem;
}

/* Welcome Panel */
.welcome-panel {
    background-color: #fb8503;
    color: white;
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-placeholder {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    width: 300px;
}

.welcome-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: .5rem;
    color: #fff;
}

.welcome-text {
    max-width: 24rem;
    color: #ffedd5;
}