body {
    font-family: Arial, sans-serif;
    background: #060B1F;  /*  #0B1426  */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #010118;  /*  */
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.tab {
    background: none;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.tab.active {
    background: white;
    color: black;
    border-radius: 5px;
}

input, select {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    margin: 5px 0;
    border-radius: 5px;
    border: none;
    background: #3A3A3A;
    color: white;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.phone-container {
    display: flex;
    gap: 5px;
}

select {
    width: 30%;
}

.auth-btn {
    width: 100%;
    padding: 10px;
    margin-top:20px;
    background: #1F88AA;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.forgot-password {
    display: block;
    margin-top: 10px;
    color: #1F88AA;
    text-decoration: none;
}

label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    margin-top: 15px;
}

label input {
    width: auto;
    margin: 0 10px;
}

.register-form{
    display: flex;
    flex-direction: column;
}