﻿.account-container {
    width: 500px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    background-color: white;
}

h2.account {
    margin-bottom: 25px;
}

.account-input-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.account-input-field {
    width: 100% ;
    padding: 12px ;
    border: 1px solid #ccc ;
    border-radius: 8px ;
    padding: 12px 100px 12px 12px;
    font-size: 14px;
    box-sizing: border-box;
}

.account-inside {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
}

    .account-inside a {
        /*text-decoration: none;*/
        /*color: #888;*/
    }

        .account-inside a:hover {
            text-decoration: underline;
        }

.account-button {
    width: 100%;
    padding: 12px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 20px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ccc;
    }

    .divider:not(:empty)::before {
        margin-right: .5em;
    }

    .divider:not(:empty)::after {
        margin-left: .5em;
    }


.text-danger {
    font-size: 12px;
    color: #d9534f;
    text-align: left;
    margin-top: 5px;
}

.text-danger2 {
    color: #d9534f;
    text-align: right;
}