@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    background-image: url('KikayImages/loginbackground.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.Navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 65px;
    background: white;
    width: 100%;
    margin: 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}


.navBar a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    margin: 10px;
}


.logo {
    background: white;
    border-radius: 50%;
}

.OrderBtn{
  background: #FFB22C;
  border-radius: 5rem;
  padding: 1rem;
}


.form {
    width: 100%;
  max-width: 500px;
  padding: 40px;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}


#title {
text-align: center;
  font-size: 2.2rem;
  color: #e9d36c;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

#loginContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    
}

#username, #password, #fullname {
    padding: 5px;
    border-radius: 1rem;
    border-style: solid;
    border-width: 2px;
    border-color: #e9d36c;
    background: #fff0af;
    width: 100%;
    font-family: 'Raleway', sans-serif;
}

 #phonenumber {
    padding: 5px;
    border-radius: 1rem;
    border-style: solid;
    border-width: 2px;
    border-color: #e9d36c;
    background: #fff0af;
    width: 100%;
    font-family: 'Raleway', sans-serif;
 }

#details {
    font-size: 20px;
    
}

#rg {
    padding: 8px;
    border-radius: 1rem;
    margin: 10px;
    font-size: 15px;
    color: #fff;
    background-color: #4F959D;
    width: 92%;
}

#register {
    text-align: center;
    font-size: 15px;
    color: black;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 30px;
}

#ontheside {
    width: 65rem;
    height: 50rem;
    border-radius: 2rem;
}

@media (max-width: 768px) {
    .form {
        max-width: 90%;
        height: auto;
        padding: 30px 20px;
        margin: 0 10px;
    }

    #title {
        font-size: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    #loginContainer {
        margin-top: 5rem;
        flex-direction: column;
        padding: 10px;
    }

    #details {
        font-size: 16px;
        text-align: center;
    }

    #username, #fullname,
    #password {
        width: 100%;
        margin-bottom: 15px;
    }

    #login {
        width: 100%;
    }

    #register {
        font-size: 14px;
        padding-left: 0;
        text-align: center;
    }
}

p {
    font-size: 13px;
}