/* General Styles */
body, html {
    min-height: 100vh;
}

body {
    height: 100vh;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
h2 {
    font-size: 40px;
    font-weight: bold;
}

p {
    font-size: 20px;
    line-height: 34px;
    margin: 20px 0;
}

span {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 48px;
    font-weight: 600;
}

/* Form Styling */
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-control {
    padding: 10px;
    width: 100%;
    outline: none;
}

.form-container {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid #ced4da;
    padding: 10px;
    border-radius: 5px;
}

/* Button Styling */
.btn-primary, .btn-light {
    padding: 15px 45px;
    font-size: 18px;
    background-color: #6435b1 !important;
    border-color: #6435b1 !important;
}

.btn-secondary {
    padding: 15px 45px;
    font-size: 18px;
    background-color: #808080 !important;
    border-color: #808080 !important;
}

.btn-custom {
    width: 48%;
    border-radius: 8px;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }
    .left-panel, .right-panel {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 32px; /* Reduce slightly for better fit */
    }
    p, .form-control, .btn-primary, .btn-light {
        font-size: 20px; /* More consistent font size */
    }
    .btn-primary, .btn-light {
        padding: 12px 30px; /* Reduce padding for better mobile fit */
    }
    .header img {
        height: 70px !important; /* Reduce size to save space */
    }
    span {
        font-size: 36px; /* Adjust for better readability */
    }
}
