* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    color: #17202a;
    background: linear-gradient(135deg, rgba(242, 106, 46, 0.12), transparent 36%),
        linear-gradient(315deg, rgba(25, 103, 210, 0.12), transparent 34%),
        #f4f6f8;
}

@font-face {
    font-family: "Voltage";
    src: url("../fonts/MaximumVoltage.ttf") format("truetype");
}

#content {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

#anaAlan {
    width: min(420px, 100%);
    overflow: hidden;
    border: 1px solid rgba(23, 32, 42, 0.08);
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 24px 80px rgba(23, 32, 42, 0.16);
}

#anaAlanBaslik {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    padding: 24px;
    border-bottom: 4px solid #f26a2e;
    background-color: #111820;
}

#anaAlanBody {
    padding: 34px 30px 26px;
}

#anaAlanFooter {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-top: 1px solid #e4e8ed;
    background-color: #f7f9fb;
}

.p_Orta {
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-family: "Voltage", Inter, Arial, sans-serif;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0;
}

#anaAlanBody .p_Orta {
    margin-bottom: 24px;
    color: #17202a;
    font-family: Inter, Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inptTexe {
    width: 100%;
    height: 48px;
    margin-bottom: 14px;
    border: 1px solid #cfd7df;
    border-radius: 6px;
    padding: 0 14px;
    color: #17202a;
    font-size: 16px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.inptTexe:focus {
    border-color: #1967d2;
    box-shadow: 0 0 0 3px rgba(25, 103, 210, 0.16);
}

label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 2px 0 12px;
    color: #4d5b68;
    font-size: 14px;
}

#remember {
    width: 17px;
    height: 17px;
    margin-left: 10px;
    accent-color: #1967d2;
}

.btn-klein {
    height: 48px;
    border: none;
    border-radius: 6px;
    background-color: #f26a2e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.btn-klein:hover {
    background-color: #d9531d;
    transform: translateY(-1px);
}

#sonuc {
    color: #b42318;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 640px) {
    body {
        background: #f4f6f8;
    }

    #content {
        min-height: 100svh;
        padding: 12px;
    }

    #anaAlan {
        box-shadow: 0 18px 46px rgba(23, 32, 42, 0.12);
    }

    #anaAlanBaslik {
        min-height: 88px;
        padding: 20px 18px;
    }

    #anaAlanBody {
        padding: 28px 18px 22px;
    }

    .p_Orta {
        font-size: 23px;
    }

    label {
        justify-content: space-between;
    }
}
