/* Styling for the Tiger AI logo */

:root {
    --clemson-orange: #F66733; /* Clemson Orange */
    --clemson-purple: #522D80; /* Regalia */
    --clemson-white: #FFFFFF;
}

/* Container layout */
.content-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* Alert banner styling */
.alert-banner {
    background-color: #ffeb3b;
    color: #333;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #fbc02d;
    box-shadow: var(--shadow-light);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Adjust content spacing when alert is present */
.alert-banner + .content-container {
    padding-top: 80px;
}

/* Content box styling */
.content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Content box styling */
.next_step_content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.next_step_content p {
    margin-bottom: 0px;
}


/* Tiger logo styling */
.tiger-logo {
    max-width: 150px;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Title styling */
.tiger-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.tiger-title .highlight {
    color: var(--clemson-orange);
    font-weight: bold;
    background: linear-gradient(90deg, var(--clemson-orange), var(--clemson-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Split content layout */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Welcome section styles */
.welcome-section {
    text-align: left;
    padding-right: 40px;
    border-right: 1px solid #e0e0e0;
}

.welcome-section p {
    font-size: 18px;
    color: var(--text-light-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button styles */
.buttons {
    margin-top: 30px;
}

.button-section {
    margin-bottom: 20px;
}

.button-section:last-child {
    margin-bottom: 0;
}

.button-info {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light-color);
}

/* Login section styles */
.login-section {
    text-align: left;
    padding-left: 40px;
}

.login-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.login-section p {
    color: var(--text-light-color);
    font-size: 16px;
    margin-bottom: 30px;
}

.login-section .preferences-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin: 0;
}

/* Form styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(98, 0, 234, 0.1);
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .content {
        padding: 30px;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-section {
        text-align: center;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 30px;
    }

    .login-section {
        padding-left: 0;
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .content-container {
        padding: 15px;
    }

    .content {
        padding: 20px;
    }

    .tiger-title {
        font-size: 28px;
    }

    .welcome-section p,
    .login-section p {
        font-size: 16px;
    }
}
