@font-face {
    font-family: 'ArialNova';
    src: url('./fonts/ArialNova.ttf') format('truetype');
}

@font-face {
    font-family: 'ArialNovaBold';
    src: url('./fonts/ArialNova-Bold.ttf') format('truetype');
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #121212;
    overflow-y: auto;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.wrapper {
    margin-top: 100px;
    max-width: 650px;
    width: 90%;
    font-family: 'ArialNovaBold';
    border-radius: 40px;
}

.content {
    background-color: #1c1c1c;
    display: flex;
    justify-content: center;
    padding: 30px 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    flex-wrap: wrap;
}

.content .headings {
    margin-top: 50px;
    padding-top: 10px;
}

.headings .logo-head {
    letter-spacing: -3px;
    line-height: 40px;
    font-size: 3rem;
    color: #8a8888;
}

.logo-head .comp-name {
    font-size: 3.5rem;
    color: #b4b4b4;
}

.logo-para {
    margin-top: 20px;
    font-family: 'ArialNova';
    letter-spacing: normal;
    color: #8a8888;
    font-size: 1.2rem;
    line-height: 15px;
}

.content .lock-logo img {
    margin: 50px 0;
    width: 250px;
    max-width: 100%;
}

.form-container {
    background-color: #161616;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 0 70px 0;
    border-top: none;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 100%;
}

.form-container h2 {
    margin: 20px 0 40px 0;
    color: #8a8888;
    font-size: 2rem;
}

form {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 20px;
}

/* Input field styles */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    background-color: transparent;
    width: 100%;
    padding: 20px 20px 20px 50px;
    font-size: 1.2rem;
    border: 2px solid #2c2c2c;
    border-radius: 100px;
    color: #c7c7c7;
    outline: none;
}

/* Disable border change on focus */
.input-with-icon input:focus {
    outline: none;
    border-color: #ccc;
    box-shadow: none;
}

.input-with-icon input::placeholder {
    color: #2c2c2c;
    font-size: 1.2rem;
}

/* Icon inside input */
.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2c2c2c;
    font-size: 25px;
}

.input-with-icon .toggle-password {
    left: auto;
    right: 20px;
    cursor: pointer;
    color: #2c2c2c;
    font-size: 22px;
}

/* Submit button */
.button-box {
    text-align: center;
}

button[type="submit"] {
    width: 150px;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: transparent;
    color: #9b9b9b;
    border: 2px solid #f27624;
    border-radius: 100px;
    cursor: pointer;
    transition: border 0.3s ease, color 0.3s ease;
}

button[type="submit"]:hover {
    border: 2px solid #b45f27;
    color: #858484;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .wrapper {
        margin-top: 50px;
        border-radius: 20px;
    }

    .logo-head {
        font-size: 2rem;
    }

    .logo-head .comp-name {
        font-size: 2.5rem;
    }

    .logo-para {
        font-size: 1rem;
        line-height: 1.4;
    }

    .content .lock-logo img {
        width: 150px;
        margin: 30px 0;
    }

    form {
        padding: 0 10px;
    }

    button[type="submit"] {
        width: 100%;
    }
}
