.login-container {
    width: 100%;
    height: 100vh;
    display: grid;
    place-content: center;
    color: var(--text-color);
    background-color: var(--background-color);
}

.login-content {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px 30px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    margin-bottom: 30px;
    background-color: var(--primary-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    user-select: none;
}

.login-header::before,
.login-header::after {
    content: "";
    position: absolute;
    top: 0;
    width: 26px;
    height: 26px;
}

.login-header::before {
    left: -26px;
    border-top-right-radius: 50%;
    box-shadow: 15px 0 0 var(--primary-color);
}

.login-header::after {
    right: -26px;
    border-top-left-radius: 50%;
    box-shadow: -15px 0 0 var(--primary-color);
}

.login-header h1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 10px 10px 10px 32px;
    font-size: 0.9rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.input-wrapper .icon {
    font-size: 1.2rem;
    color: var(--text-color-light);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color-dark);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: var(--accent-color-dark);
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: #0056b3;
}

.form-group-double {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.checkbox-group {
    width: unset;
}

.divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--text-color-light);
}

.divider::after, .divider::before {
    content: "";
    width: 100%;
    height: 1px;
    margin-left: 4px;
    background-color: var(--border-color);
}

.divider::before {
    margin-right: 4px;
}

.login-with {
    width: 100%;
}

.login-with__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-block: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.login-with__btn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-with__btn .icon {
    font-size: 1.8rem;
    color: var(--danger-color);
}