*{
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
}

nav {
    position: fixed;
    top:0;
    width: 100%;
    height: 60px;
    z-index: 9;
    display: flex;
    align-items: center;
    background-color :#f9f1e4;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo{
    font-size: 28px;
    flex:1;
    margin-left: 20px;
}

.logo span i{
    color:#FF8A8A;
}

.options{
    display: flex;
    gap:20px;
    list-style: none;
    flex:2;
    font-size: 18px;
    align-items: center;
    justify-content: right;
}

.options li{
    cursor: pointer;
}

.user{
    flex:1;
    display: flex;
    list-style: none;
    gap:4px;
    display: flex;
    margin-right: 40px;
    justify-content: flex-end;
}

.user span{
    cursor: pointer;
}

.user p{
    color:#FF8A8A;
}

.hamburguer{
    display: none;
    flex-direction: column;
    gap:6px;
    width: 30px;
    margin-right: 40px;
    cursor: pointer;
}

.hamburguer .line{
    height: 1px;
    width: 100%;
    background-color: #000;
}

.container{
    background: linear-gradient(180deg, #f9f1e4 0%, #f9f1e4 50%, #96b0c8 51%, #627e84 100%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
    margin-top: 80px;
    padding: 20px;
}

.top{
    display: flex;
    align-items: center;
    justify-content: center;
    top:15px;
    width: 100% !important;
    z-index: 2;
}

.top span{
    font-weight: 500;
    font-size: 30px;
}

.top span:first-child{
    color:#827f5f;
}

.top span:last-child{
    color: #da9d3a;
    margin-bottom: 20px;
}

.image-dog{
    width: auto;
    height: 90px;
    position: relative;
}

.bottom {
    margin-top:-10px;
    position: relative;
    background-color: #f9f1e4;
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    border: 0px solid rgb(0, 0, 0);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bottom .triangle{
    width: 0; 
    height: 0; 
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 60px solid #567393;
    position: relative;
    left: 90px;
}

.bottom form{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap:10px;
    height: 100%;
    width: 90%;   
    padding: 0px 20px;
}

.profilePic{
    position: relative;
    top:0px;
    display: flex;
    background-color: #f9f1e4;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #db9b38;
    color: white;
    align-self: center;
    margin-left: 10px;
}

.profilePic i:first-child {
    font-size: 50px;
}

.profilePic .circle{
    background-color: #db9b38;
    position: absolute;
    left:0px;
    bottom: -4px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.profilePic .circle i{
    font-size: 18px;
} 

.bottom form input{
    border: none;
    outline: 0;
    padding: 10px;
    border-radius: 20px;
    width: 95%;
}

.bottom form input[type="radio"] {
    width: 15px !important;
}

.singUp {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.singUp button{
    background-color: #567393;
    color:white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 50px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.singUp span{
    cursor: pointer;
}

.menuMobile{
    position: absolute;
    height: calc(100vh -  60px);
    width: 100vw;
    background-color: #1F2A32;
    top:60px;
    z-index: 999;
}

@media (max-width: 1200px) {
    .wrapper{
        width: 70%;
    }

    .container .paw{
        display: none;
    }
}

@media (max-width: 998px) {
    .wrapper{
        width: 100%;
    }

    nav .options{
        position : absolute;
        top : 60px;
        right : 0;
        width :  60vw;
        height :  92vh;
        background-color :#f9f1e4;
        flex-direction :  column;
        align-items :  start;
        transform :  translateX( 100% ) ;
        transition :  transform 0.3s ease-in;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        padding-left: 20px;
    }

    .sepator-options{
        display: none;
    }

    nav .options.active{
        transform :  translateX( 0% );
    }

    nav .options.active li{
        opacity: 0;
        animation: items 0.5s;
        animation-fill-mode: forwards;
    }

    nav .options li:nth-child(1){
        animation-delay: 0.3s;
    }

    nav .options li:nth-child(2){
        animation-delay: 0.5s;
    }

    nav .options li:nth-child(3){
        animation-delay: 0.7s;
    }

    nav .options li:nth-child(4){
        animation-delay: 0.9s;
    }

    nav .user{
        display: none;
    }

    nav .hamburguer{
        display: flex;
    }
}

@media (max-width: 669px) {
    .wrapper{
        width: 100%;
    }

    .bottom{
        width: 100%;
        margin-top: -10px;
    }

    .options{
        margin-right: 0;
    }
}

@media (max-width: 441px) {
    .top span {
        font-size: 30px;
    }

    .top span:last-child{
        margin-bottom: 10px;
    }
    
    .singUp  {
       flex-direction: flex;
       gap: 3px;
       align-items: center;
       top: 10px;
    }

    .singUp span{
        align-self: flex-start;
    }
    
    .singUp button{
        align-items: center;
    }
}

@keyframes items{
    0%{
       transform: translateX(300%);
    }
    100%{
        opacity: 1;
        transform: translateX(0%);
    }
}

.custom-input::placeholder {
    color: black;
}

.custom-input:focus {
    border-color: #da9d3a;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(218, 157, 58);
}