﻿
.show-reg-form {
    all: unset;
    float: right;
    color: #fff;
    cursor: pointer;
    /*margin-right: 40px;*/
    /*padding-left: 10px;*/
    position: relative;
    top: 0;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    font-weight: 400;
    border-left: 1px solid rgba(0, 0, 0, 0.21);
}

    .show-reg-form:hover {
        color: var(--bs-warning);
    }


    .show-reg-form .login-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        min-width: 180px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 4px;
        z-index: 1000;
        margin-top: 5px;
    }

        .show-reg-form .login-dropdown.show {
            display: block;
        }

    .show-reg-form .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.2s;
    }

        .show-reg-form .dropdown-item:hover {
            background-color: #f5f5f5;
        }

        .show-reg-form .dropdown-item i {
            width: 20px;
            text-align: center;
            color: #3E67A7;
        }
