/* Register Page Styles */

.register-container {
    max-width: 500px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.register-container h2 {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
}

.register-container .info-box {
    background: linear-gradient(135deg, #fbfcfd 0%, #ffffff 100%);
    border: 1px solid #40b4e0;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-size: 0.95rem;
}

.register-container .info-box strong {
    color: #fd192a;
}

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

.form-group label {
    display: block;
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #40b4e0;
    box-shadow: 0 0 5px rgba(64, 180, 224, 0.3);
}

.form-group small {
    display: block;
    color: #666;
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

.register-button {
    width: 100%;
    background: linear-gradient(135deg, #fd192a 0%, #40b4e0 100%);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #1f2937;
}

.login-link a {
    color: #fd192a;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    color: #40b4e0;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #40b4e0;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #fd192a;
}
