/* Стили для страницы регистрации */

.register-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 0;
}

.register-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
}

.register-image {
    flex: 0 0 auto;
}

.register-image img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.register-form-section {
    flex: 1;
    max-width: 350px;
}

.register-title {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.email-form {
    margin-bottom: 20px;
}

.email-form .form-group {
    margin-bottom: 16px;
}

.register-link {
    text-align: center;
}

.resend-confirmation-section {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fafafa;
}

.resend-confirmation-section h3 {
    margin-top: 0;
    text-align: center;
}

.resend-confirmation-section p {
    text-align: center;
    margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .register-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .register-image img {
        width: 200px;
    }
    
    .register-form-section {
        max-width: 100%;
        width: 100%;
    }
}