* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.visible {
    display: block !important;
}

.invisible {
    display: none;
}

.parent-login-gg,
.login-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
}

.parent-login-gg {
    display: block;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

.card {
    margin: auto;
    background: white;
    border-radius: 20px;
    width: 380px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.close-wrapper {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.close-icon {
    width: 12px;
    height: 12px;
}

.logo {
    width: 120px;
}

.form-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    width: 100%;
}

.input-wrapper {
    background: #13132b;
    border-radius: 8px;
    width: 100%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.input-wrapper--gg{
    background-color: #fff;
}
.input-wrapper--gg button{
    margin: auto;
}
.input-wrapper--gg button:last-child{
    background: #e38e8e;
}
.input-icon {
    width: 15px;
    height: 16px;
}

.input {
    border: none;
    background: transparent;
    height: 24px;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

input:focus-visible {
    border: none;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.save-password-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.checkbox {
    width: 15px;
    height: 15px;
    accent-color: #13132b;
}

.save-password-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.forgot-password-link {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
}

.forgot-password-link:hover {
    opacity: 0.8;
}

.submit-btn {
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    color: white;
    background: #13132b;
}

.submit-btn:hover {
    opacity: 0.9;
}

.have-account-wrapper {
    display: flex;
    gap: 4px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 12px;
}

.sign-up-link {
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.divider {
    width: 100%;
    height: 1px;
    background: #ccc;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.login-container .divider {
    margin: 12px 0 16px 0;
}

.google-btn {
    color: #f04336;
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
    border: 1px solid #ccc;
    background-color: white;
}

.google-btn:hover {
    background-color: #13132b;
}

.google-img {
    width: 20px;
}

/* custom */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.absolute-center {
    position: absolute;
    left: 48%;
    top: -10px;
    background: white;
    padding: 0 4px;
}

.btn {
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    min-width: 132px;
}
