﻿.form-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
}

.form-section {
    flex: 1;
}

.divider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vertical-line {
    width: 1px;
    height: 100%;
    background-color: #ccc;
}

.or-text {
    position: absolute;
    background: white;
    padding: 6px 7px;
    border-radius: 50%;
    color: #666;
    font-weight: bold;
}

@@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
    }

    .divider {
        flex-direction: row;
        height: 1px;
        margin: 20px 0;
    }

    .vertical-line {
        width: 100%;
        height: 1px;
    }

    .or-text {
        position: relative;
        margin: 0 10px;
    }
}
