* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1dd1a1;
    min-height: 100vh;
    transition: 0.5s;
}

.login {
    position: relative;
    padding: 50px;
    background: #fff;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.login h2 {
    font-weight: 500;
    border-left: 15px solid #1dd1a1;
    line-height: 1em;
    padding-left: 10px;
    transition: 0.5s;
    color: #333;
}

.login .inputBox {
    position: relative;
}

.login .inputBox input {
    position: relative;
    width: 100%;
    padding: 10px 15px;
    outline: none;
    border: 2xp solid #555;
    font-size: 1em;
    color: #333;
}

.login .inputBox input#btn {
    width: 100%;
    border: none;
    background: #1dd1a1;
    color: #fff;
    transition: 0.5s;
    font-size: 1.1em;
    cursor: pointer;
}

.login .inputBox input#btn:hover {
    background: #1dd1a1bb;
}

.login .grup {
    display: flex;
    justify-content: space-between;
}

.login .grup a {
    color: #333;
    text-decoration: none;
}

.login .grup a:nth-child(2) {
    font-weight: 500;
    text-decoration: underline;
}

.chekColor {
    position: relative;
    right: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.style-switcher-toggler {
    position: absolute;
    color: #000;
    right: 8px;
    bottom: 8rem;
    font-size: 30px;
    cursor: pointer;
}

.colors {
    position: absolute;
    right: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
}

.colors.show {
    opacity: 1;
}

.colors span {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--clr);
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.colors span.active {
    border: 2px solid #333;
    scale: 1.5;
}