html {
    scroll-behavior: smooth;
}

.video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.sec__home__slider .home-slider .bg-media{
    border-radius: 18px 18px 100px 18px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
}

.sec__home__slider .home-slider .bg-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#form_edit_user_data label {
    color: white;
}

#form_edit_user_data input[type=text]{
    color: white;
    border-color: white;
}

#form_edit_user_data input[type=text]:focus{
    color: black;
    border-color: black;
}

#form_edit_user_data input[type=text]:read-only{
    background-color: rgba(255, 255, 255, .4);
}

.ptm-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1px;
}

.ptm-next {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: -1px;
}

.ptm-own {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
}

/* COLLECTIONS */
.collection-border-radius {
    border-radius: 18px;
}

.collection-media-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.collection-media-wrapper .img-ticket {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-market--title {
    height: 48px;
}

/* NEW LOGIN FLOW STYLES */
#access-login .sec--login {
    /*min-height: calc(100vh - 200px);*/
    display: flex;
    align-items: center;
}

#access-login .login-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

#access-login .login-header-simplified {
    text-align: center;
    margin-bottom: 30px;
}

#access-login .login-header-simplified img {
    width: 60px;
    margin-bottom: 15px;
}

#access-login .login-header-simplified h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

#access-login .login-header-simplified p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

#access-login .form-auth .form-group label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    font-size: 14px;
}

#access-login .form-auth .form-control {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    height: auto;
    transition: all 0.3s ease;
}

#access-login .form-auth .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

#access-login .form-auth .btn-submit {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
}

#access-login .auth-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

#access-login .auth-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#access-login .error-message {
    background: #fff5f5;
    color: #e53e3e;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid #e53e3e;
    display: none;
}

#access-login .loader-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
