@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    font-family: "Roboto", sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

p {
    padding: 0;
    margin: 5px 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cfcfcf;
    opacity: 0.8;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Page brand style */

.brand {
    margin-bottom: 20px;
}

.logo {
    width: 200px; /* Adjust the width as needed */
}


/* Footer Style */

.footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .section {
    padding: 5px;
    display: flex;
    justify-content: space-around;

}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.full-width {
    width: 100%;
}

.footer .section.heading h1 {
    font-size: 20px;
    text-align: center;
    padding: 0;
    margin: 0;
}

.button.register {
    background-color: black;
    color: white;
    border: 1px solid black;
}

.apps-container {
    display: flex;
    flex-direction: column;
}

.apps-container .content {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.apps-container .apps {
    display: flex;
}

.apps-container .apps .app-icon {
    border: 1px solid white;
    padding: 7px 10px;
    border-radius: 10px;
    margin: 5px;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.apps-container .apps .app-icon img {
    width: 30px;
}

/* Form Style */

form {
    width: 100%;;
}

.form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header {
    width: 100%;
}

.form-header h2 {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button styles */
.button {
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: red;
    border: 1px solid red;
    color: white;
    width: 100%;
}

.button:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    border: 1px solid black;
}

/* End button Style here */

/* Input field style */
.field {
    display: flex;
    margin: 15px 0;
    height: 50px;
    width: 100%;
    position: relative;
}

.hide {
    display: none;
}

.error {
    color: red;
    font-size: 14px;
}

.input {
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input:focus {
    border-color: dodgerBlue;
    box-shadow: 0 0 8px 0 dodgerBlue;
}

.icon-input {
    width: 100%;;
    padding-left: 50px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
    transition: 0.3s;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.password-forgot {
    height: 10px;
    font-size: 13px;
}

.password-forgot-link {
    float: right;
    text-align: right;
    width: 100%;
}

.password-forgot-link a {
    color: red;
}
