.container{
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    height: 100%;
    background: #fff url(background.png) no-repeat top 15% right -10px / contain;
}

.login{  
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 3rem;
    position: fixed;
    bottom: 0;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background: #e5e5e5;
}

h1{
    font-size: 2rem;
    font-weight: 600;
}

p{
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 1rem;
}

.btn-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.btn-wrapper.iphone{
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
}

.btn-wrapper.iphone p{   
    font-size: 1.6rem;
    color: var(--sub-color);
    margin: .6rem 0;
}

.btn-wrapper .icon{
    position: relative;
    top:3px;
}

.btn-wrapper .icon1{
    position: relative;
    top:6px;
}

.btn-wrapper .web{
    margin: 1rem 0;
    border-radius: 16px;
    border: 1px solid #eaeaea;
}

.btn-wrapper.install{
    flex-direction: column;
    align-items: flex-start;    
    margin: 1rem 0;
}

.btn-wrapper.install h1{
    font-size: 2.4rem;
}

.btn-wrapper.install p{
    display: block;
    padding: 1rem 0 0 0;
    font-size: 1.8rem;
    color: var(--main-color);
}

.btn-wrapper.install p span{    
    padding: 0 .8rem;
    font-weight: 600;
    color: var(--accent-color);
}

.btn{
    width: 31.6rem;    
    border-radius: 4px;
    padding: 2rem;
    font-family: "Pretendard Variable";
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--table-border);
    background: var(--sub-color);
    outline: none;
    border: none;
    cursor: pointer;
}