.auth-tunedr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    color: white;
}

.auth-tunedr-page {
    background: #181818;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.top-auth-tunedr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title-auth-tunedr {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.top-auth-tunedr img {
    width: 120px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.form-control {
    width: 100%;
    padding: 12px;
    background: #282828;
    border: 1px solid #3e3e3e;
    border-radius: 4px;
    color: white;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1.5rem;
    transition-duration: 0.3s;
}

.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
    transform: scale(0.95);
    transition-duration: 0.3s;
}

.link {
    text-align: center;
    margin-top: 1rem;
}

.link a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
}