/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

body {
    min-height: 100vh;
    width: 100%;
    background: #484f52;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
}

.site-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    
}

.card {
    width: 100%;
    max-width: 430px; /* Увеличено на 20% от 430px */
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.card-header {
    padding: 15px;
    background: #ded528;
    border-top-left-radius : 7px;
    border-top-right-radius : 7px;
}

.login-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.form {
    padding: 2rem;
}

.form input {
    height: 60px;
    width: 100%;
    padding: 0 15px;
    font-size: 17px;
    margin-bottom: 1.3rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.form input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.form a {
    font-size: 16px;
    color: #009579;
    text-decoration: none;
}

.form a:hover {
    text-decoration: underline;
}

.form .button {
    width: 100%; /* Кнопка на всю ширину */
    color: #fff;
    background: #4c5fee;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 1.7rem;
    cursor: pointer;
    transition: 0.4s;
    padding: 15px; /* Добавляем отступы для кнопки */
    border: none; /* Убираем границы */
    border-radius: 6px; /* Скругляем углы, как у полей */
}

.form .button:hover {
    background: #006653;
}

.signup {
    font-size: 17px;
    text-align: center;
}

.signup label {
    color: #009579;
    cursor: pointer;
}

.signup label:hover {
    text-decoration: underline;
}
