.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 5vh 5vw;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
}
/* for mobile */
@media (max-width: 600px) {
    .container {
        max-width: 300px;
    }
}

.logo img {
    width: 100px;
    height: auto;
}
h2 {
    font-family: 'Pacifico', cursive;
    margin-bottom: 20px;
    color: #ffffff;
}

.input-group {
    max-width: 100%;
    position: relative;
    margin-bottom: 15px;
}
.input-group input::placeholder, .input-group select::placeholder {
    color: #d3d3d3;
}
.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1em;
    box-sizing: border-box;
}
.input-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #d3d3d3;
    font-size: 1em;
    box-sizing: border-box;
}
.input-group input:focus, .input-group select:focus {
    outline: none;
    border: 2px solid #ffffff;
}
.input-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
}

.button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #000000;
    font-size: 1.2em;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
.button:hover {
    background-color: #f0f0f0;
}

.links {
    margin-top: 20px;
    font-size: 0.9em;
}
.links a {
    color: white;
    text-decoration: none;
}
.links a:hover {
    text-decoration: underline;
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin-bottom: 15px;
}

.phone-group select {
    flex: 1;
    padding: 10px;
    width: 10%;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #d3d3d3;
    font-size: 1em;
    box-sizing: border-box;
}
.phone-group input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #d3d3d3;
    font-size: 1em;
    box-sizing: border-box;
}
.phone-group input::placeholder, .phone-group select::placeholder {
    color: #d3d3d3;
}
.phone-group select:focus, .phone-group input:focus {
    outline: none;
    border: 2px solid #d3d3d3;
}
.captcha {
    display: flex; /* Align children in a row */
    align-items: center; /* Center items vertically */
    margin: 15px 0; /* Add margin for spacing */
}

.code {
    font-size: 1.5em;
    width: 50%;
    padding: 7px;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
    margin-right: 10px;
    color: #333333;
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}
.input {
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 150px;
}
.input::placeholder {
    color: #d3d3d3;
}