/*PC*/
.login{
    padding: 20px;
    text-align: center;
    transform: translateY(45%);
    font-family: sans-serif;
}

.title{
    font-size: 40px;
}

.title-area{
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.cloud-icon{
  width: 150px;
}

#userid{
    width: 20ex;
    margin-left: 25px;
}

#password{
    width: 20ex;
    margin-left: 10px;
}

#button{
    color: white;
    border: none;
    border-radius: 3px;
    width: 100px;
    height: 40px;
    margin-top: 20px;
    background-color: rgba(78, 117, 233, 0.84);
}

/*タブレット(横)*/
@media (max-width: 960px),(orientation: landscape) {

    .login{
        text-align: center;
        transform: translateY(45%);
        font-family: sans-serif;
    }
    
    .title{
        font-size: 30px;
    }
    
    .cloud-icon{
        width: 112.5px;
    }

    #err{
        font-size: 20px;
        text-align: center;
    }
    
    #num, #pass{
        font-size: 20px;
    }

    #userid{
        font-size: 20px;
        width: 15ex;
        margin-left: 28px;
    }
    
    #password{
        font-size: 20px;
        width: 15ex;
        margin-left: 10px;
    }
    
    #button{
        font-size: 20px;
        color: white;
        border: none;
        border-radius: 3px;
        width: 140px;
        height: 50px;
        margin-top: 20px;
        background-color: rgba(78, 117, 233, 0.84);
    }
    
}

/*タブレット(縦)*/
@media (max-width: 960px),(orientation: portrait) {

    .login{
        padding: 30px;
        text-align: center;
        transform: translateY(60%);
        font-family: sans-serif;
    }
    
    .title{
        font-size: 30px;
    }
    
    .cloud-icon{
        width: 112.5px;
    }

    #err{
        font-size: 20px;
        text-align: center;
    }
    
    #num, #pass{
        font-size: 20px;
    }

    #userid{
        font-size: 20px;
        width: 15ex;
        margin-left: 28px;
    }
    
    #password{
        font-size: 20px;
        width: 15ex;
        margin-left: 10px;
    }
    
    #button{
        font-size: 15px;
        color: white;
        border: none;
        border-radius: 3px;
        width: 140px;
        height: 50px;
        margin-top: 20px;
        background-color: rgba(78, 117, 233, 0.84);
    }
    
}

/*スマートフォン*/
@media (max-width: 480px) {

    .login{
        text-align: center;
        transform: translateY(45%);
        font-family: sans-serif;
    }
    
    .title{
        font-size: 25px;
    }

    .cloud-icon{
        width: 93.75px;
    }
    
    #err{
        font-size: 18px;
        text-align: center;
    }
    
    #num, #pass{
        font-size: 23px;
    }

    #userid{
        font-size: 20px;
        width: 20ex;
        margin-left: 28px;
    }
    
    #password{
        font-size: 20px;
        width: 20ex;
        margin-left: 10px;
    }
    
    #button{
        font-size: 20px;
        color: white;
        border: none;
        border-radius: 3px;
        width: 160px;
        height: 70px;
        margin-top: 20px;
        background-color: rgba(78, 117, 233, 0.84);
    }
    
}
