@font-face {
    font-family: 'Academy';
    src: url('fonts/Academy.Kz_.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Izvod';
    src: url('fonts/Izvod.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Academy';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

h2 {
    font-family: 'Izvod';
    font-size: 5rem;
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    font-size: 26px;
    color: #888;
}

.form-label{
    font-size: 20px;
}

.auth-button {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

.policy-text {
    margin-top: 15px;
    font-size: 12px;
    color: #333;
    text-align: center;
}

a{
    color: #333;
}

.auth-block{
    font-size: 18px;
}

.policy-text a {
    color: #4CAF50;
}

.switch-btn {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.hidden {
    display: none;
}

.page-container {
    width: 100%;
    max-width: 520px;
    padding: 20px;
}

.auth-block__switch-link {
    margin-top: 16px;
    text-align: center;
    font-size: 18px;
}

.auth-link {
    color: #4CAF50;
    text-decoration: underline;
}

.profile-text {
    font-size: 20px;
    margin-bottom: 12px;
}

.profile-order-wrap {
    margin: 24px 0;
}

.profile-order-title {
    font-family: 'Izvod';
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-align: left;
}

.profile-order {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 10px;
}

.profile-order-id {
    font-size: 16px;
    color: #555;
    word-break: break-all;
}

#logout-btn {
    margin-top: 20px;
}

body.profile-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    min-height: 100vh;
    background-color: #fff;
}

.profile-layout .header {
    height: auto;
    min-height: 280px;
    padding-bottom: 48px;
}

.profile-layout .header-content {
    height: auto;
    margin-top: 24px;
    margin-left: 0;
    align-items: center;
}

.profile-layout .header-title {
    font-size: 4rem;
    text-align: center;
}

.profile-main-inner {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 48px;
    text-align: left;
}

.profile-layout .page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.profile-layout .auth-block {
    text-align: left;
}

.profile-layout .auth-block__switch-link {
    text-align: left;
}

.profile-layout .footer {
    width: 100%;
    margin-top: auto;
}
