
.login-title {
    margin-top: 80px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.login-title-img {
    width: 280px;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}


.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}


.login-form {
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 100px;
}


.login-input {
    width: 100%;
    height: 42px;
    border: 2px solid white;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding-left: 12px;
    font-size: 18px;
    color: white;
    outline: none;
    font-family: "Carter One", system-ui;
    font-weight: 500;
}

    .login-input::placeholder {
        color: #e6e6e6;
    }


.login-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .login-button:hover {
        transition: box-shadow 0.3s ease-in-out;
        transform: scale(1.05);
        transition: transform 0.3s ease;
        border-radius: 15px;
    }

.login-btn-img {
    width: 150px;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}


.login-message {
    color: white;
    margin-top: 10px;
    font-family: "Carter One", system-ui;
    font-weight: 500;
    font-size: 20px;
    text-shadow: 1px 1px 6px black;
    text-align: center;
}
