.auth-buttons a {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: #fbd204;
    color: #082e23;
    font-weight: bold;
}

.auth-buttons a:hover {
    background-color: #d8a900; /* Более тёмный жёлтый */
}

/* Основной контент */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.form-container {
    padding: 20px 30px;
    border-radius: 10px;
    width: 400px;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #fbd204;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: #0f4f38;
    border-radius: 20px;
    padding: 10px;
}

.form-group img {
    width: 15px;
}

.form-group input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
}

.form-group input:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
} 

.form-group input::placeholder {
    color: #b8b8b8;
}

.form-button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #fbd204;
    color: #082e23;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.form-button:hover {
    background-color: #d8a900;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.form-footer a {
    color: #fff;
    text-decoration: none;
}

.form-footer span {
    color: #ffffff9c;
}

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

.circle-img{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: rgba(109, 151, 115, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.input-group{
        align-items: center;
    justify-content: center;
    display: flex;
    flex-direction:row;
}

 @media (max-width: 480px) {
    .form-container {
        padding: 20px 30px;
        border-radius: 10px;
        width: 300px;
    }

}