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

/* Body styles */
body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow-y: scroll;
    margin: 0;
    position: relative;
}
/* Login form container */
.container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100%;
}

.logoName {
    max-width: 200px;
    height: auto;
}
.background-image {
    position: fixed; /* Keeps the image fixed in the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Login form container */

.card {
    box-shadow: 0 4px 8px rgba(77, 74, 74, 0.634);
    border-radius: 10px;
    background-color: rgba(37, 35, 35, 0.323);
}

.registeri {
    display: block;
    font-family: "Montserrat", sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}

.title h2 {
    font-size: 35px;
}

.inputet {
    height: 70px;
    font-size: 22px;
    margin-bottom: 5px;
}
.inputet input::placeholder {
    font-size: 19px; /* Adjust the font size as needed */
}

.inputetadress input::placeholder {
    font-size: 18px; /* Adjust the font size as needed */
}
.input {
    height: 29px;
}

.logini {
    font-size: 14px;
    padding-top: 5px;
    color: white;
}

.logini a {
    color: white;
}

.titulliregisteri {
    font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 700px) {
    .registeri{
        margin-left: 10%;
        width: 80%;
    }
    #phone_number.input{
        width: 100%;
    }
}
@media only screen and (min-width: 700px) {

    .input1 {
        padding-right: 40px;
    }
    .dyinputet {
        display: flex;
    }

    .address-inputs input {
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 14px;
    }
    .logoName {
        max-width: 200px;
        height: auto;
        padding-bottom: 30px;
    }
    .titulliregisteri {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .logini {
        padding-top: 17px;
        padding-bottom: 7px;
    }

}
