/* Authentication Styles */
.auth-container {
    display: flex;
    min-height: calc(100vh - 150px);
    background-color: #f9f9f9;
}

.auth-form-container {
    flex: 1;
    padding: 3rem;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.auth-info {
    flex: 1;
    background: linear-gradient(135deg, #ff5a5f, #ff7e82);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-info-content {
    max-width: 450px;
}

.auth-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.auth-header {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.auth-form {
    max-width: 450px;
    margin: 0 auto;
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #ff5a5f;
    outline: none;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

.forgot-password a:hover {
    color: #ff5a5f;
    text-decoration: underline;
}

.remember-me {
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.auth-footer p {
    margin-bottom: 1rem;
    color: #666;
}

.auth-benefits {
    margin: 2rem 0;
    padding-left: 0;
}

.auth-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.auth-benefits li i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.auth-trial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.trial-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: white;
    color: #ff5a5f;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.trial-badge i {
    margin-right: 0.5rem;
}

/* License options */
.license-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.license-option {
    flex: 1;
    text-align: center;
}

.license-option input[type="radio"] {
    display: none;
}

.license-option label {
    display: block;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.license-option input[type="radio"]:checked + label {
    border-color: #ff5a5f;
    background-color: rgba(255, 90, 95, 0.05);
    color: #ff5a5f;
}

.terms-checkbox a {
    color: #ff5a5f;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-info {
        min-height: 400px;
    }
}