* {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.alert-danger {
    color: #c83232;
}

.container {
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.2);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

.container span,
.container a {
    font-size: 13px;
    color: #c8c8c8;
    text-decoration: none;
    margin: 15px 0 10px;
}

.container button {
    color: #fff;
    background-color: #0099cc;
    font-size: 12px;
    padding: 10px 45px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.container button.hidden {
    background-color: transparent;
    border-color: #fff;
}

.container form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    height: 100%;
}

.container input {
    border: 1px solid #444;
    margin: 8px 0;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
    width: 100%;
    outline: none;
}

.button-container-1,
.button-container-2,
.button-container-3,
.button-container-4 {
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid #0099cc;
    position: relative;
    width: 145px;
    height: 42px;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 8px;
    color: #fff;
}

.button-container-3 {
    color: #0099cc;
    border: 1px solid #fff;
}

.mas, .mas-2, .mas-3 {
    position: absolute;
    color: #0099cc;
    text-align: center;
    width: 101%;
    font-size: 12px;
    margin-top: 11px;
    overflow: hidden;
    font-weight: bold;
}

.social-icons a {
    border: 1px solid #444;
    border-radius: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    width: 40px;
    height: 40px;
    transition: all 0.5s ease-in-out;
}

.social-icons a:hover {
    scale: 1.1;
    border-color: #0099cc;
}

.toggle-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    border-radius: 150px 0 0 100px;
    z-index: 20;
}

.toggle {
    height: 100%;
    background: linear-gradient(to right, #006699, #0099cc);
    color: #fff;
    position: relative;
    left: -100%;
    width: 200%;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    top: 0;
    transform: translateX(0);
    transition: all 0.6s ease-in-out;
}

.toggle-left {
    transform: translateX(-200%);
}

.toggle-right {
    right: 0;
    transform: translateX(0);
}

.container.active .toggle-left {
    transform: translateX(0);
}

.container.active .toggle-right {
    transform: translateX(200%);
}

.container.active .toggle-container {
    transform: translateX(-100%);
    border-radius: 0 150px 100px 0;
}

.container.active .toggle {
    transform: translateX(50%);
}
