@font-face {
    font-family: 'Bogart';
    src: url('fonts/Bogart-Medium-trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves font performance */
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding-top: 20px;
}

/* Container Styling */
.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Headings */
h2 {
    font-family: 'Bogart', Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #000000;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
}

/* Input Fields */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input:focus {
    border-color: #FC584B;
    box-shadow: 0 0 5px rgba(0, 87, 183, 0.3);
    outline: none;
}

/* Buttons */
button {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 183, 54, 1);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #8a0b4f;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    color: #666;
}

/* Password Visibility Toggle */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    width: 40px;
    margin-bottom: 12px;
    margin-left: 4px;
    height: 46px;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
    text-align: center;
}

footer a {
    color: #0057b7;
    text-decoration: none;
}

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