/* DRL Registration Styles */
.drl-background-container {
    width: 100%;
    max-width: 1000px;
    background: rgba(22, 33, 62, 0.85);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px auto;
}

.drl-decoration-column {
    flex: 1;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.7) 0%, rgba(233, 69, 96, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    display: none;
}

@media (min-width: 900px) {
    .drl-decoration-column {
        display: flex;
    }
}

.drl-decoration-column::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.drl-logo-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.drl-logo {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.7);
}

.drl-decoration-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 300px;
    margin-top: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.drl-form-column {
    flex: 1.5;
    padding: 40px;
}

.drl-app-header {
    text-align: center;
    margin-bottom: 30px;
}

.drl-app-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #e94560;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.drl-tagline {
    font-size: 1.1rem;
    color: #8fe3cf;
}

.drl-auth-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 700px) {
    .drl-auth-container {
        grid-template-columns: 1fr 1fr;
    }
}

.drl-auth-section {
    background: rgba(26, 26, 46, 0.7);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drl-section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #e94560;
    border-bottom: 2px solid #0f3460;
    padding-bottom: 10px;
    text-align: center;
}

.drl-input-group {
    margin-bottom: 15px;
}

.drl-input-group label {
    display: block;
    margin-bottom: 8px;
    color: #8fe3cf;
    font-weight: 500;
}

.drl-input-group input, 
.drl-input-group select, 
.drl-input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(15, 52, 96, 0.5);
    border-radius: 8px;
    background-color: rgba(22, 33, 62, 0.7);
    color: #e6e6e6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.drl-input-group input:focus, 
.drl-input-group select:focus, 
.drl-input-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.3);
}

.drl-button {
    background: linear-gradient(to right, #e94560, #ff577f);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.drl-button:hover {
    background: linear-gradient(to right, #ff577f, #e94560);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.drl-secondary-btn {
    background: linear-gradient(to right, #0f3460, #1b5cb0);
}

.drl-secondary-btn:hover {
    background: linear-gradient(to right, #1b5cb0, #0f3460);
}

.drl-auth-footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    color: #8fe3cf;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drl-message {
    padding: 12px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.drl-success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.drl-error {
    background-color: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.drl-password-strength {
    height: 6px;
    margin-top: 8px;
    border-radius: 3px;
    background-color: rgba(26, 26, 46, 0.5);
    overflow: hidden;
}

.drl-strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s, background-color 0.3s;
}

.drl-weak {
    background-color: #e94560;
    width: 33%;
}

.drl-medium {
    background-color: #f39c12;
    width: 66%;
}

.drl-strong {
    background-color: #2ecc71;
    width: 100%;
}

.drl-password-requirements {
    font-size: 0.8rem;
    margin-top: 8px;
    color: #8fe3cf;
    opacity: 0.8;
}

.drl-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.drl-form-footer a {
    color: #8fe3cf;
    text-decoration: none;
}

.drl-form-footer a:hover {
    text-decoration: underline;
}

.drl-divider {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.drl-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.drl-divider-text {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.drl-auth-message {
    background: #0f3460;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.drl-auth-message h3 {
    color: #e94560;
    margin-bottom: 15px;
}