@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: Inter;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

body {
    /* margin: 0; */
    background-color: #161616;
}

.main-container {
    padding: 120px 0 50px;
}

.application-container {
    max-width: 700px;
    margin: auto;
    background-color: white;
    padding: 30px;
    border: 2px solid #ff7a00;
    border-radius: 8px;
    color: #ff7a00;
    font-family: Inter, sans-serif;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    color: #161616;
    margin-bottom: 5px;
    text-align: center;
}

.fill {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
}

.application-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.application-container label {
    font-weight: 600;
    color: #161616;
    margin-bottom: 5px;
}

.application-container input {
    padding: 10px;
    border: 1px solid #FDB042;
    border-radius: 4px;
    background-color: white;
    color: #161616;
    font-weight: 600;
    font-size: 16px;
}

.application-container input:focus {
    outline: none;
    border-color: #F16C1D;
    box-shadow: 0 0 5px #F16C1D66;
}

.application-container button {
    background: linear-gradient(to right, #ffb347, #ff7a00);
    color: #000000;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s ease-in-out;
}

.application-container button:hover {
    transform: scale(1.03);
}

.forgot-hold {
    width: 100%;
    height: 20px;
    display: flex;
    /* justify-content: center; */

    .rem {
        width: 50%;
        display: flex;
        justify-content: flex-start;
        font-size: 14px;
    }

    .forget {
        width: 50%;
        display: flex;
        justify-content: flex-end;

        a {
            text-decoration: none;
            color: #ff7a00;
            font-weight: 600;

            &:hover {
                color: #F16C1D;
            }
        }
    }
}

p {
    margin-bottom: 0px;
    text-align: center;
    a {
        text-decoration: none;
        color: #ff7a00;
        font-weight: 600;

        &:hover {
            color: #F16C1D;
        }
    }
}

.log {
    margin-top: 0px;
}

.success-msg {
    color: green;
    font-weight: bold;
    margin-bottom: 15px;
}

.error-msg {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}